Upgrade/iRedAdmin-Pro/LDAP/1.2.0-1.3.0

From iRedMail

(Difference between revisions)
Jump to: navigation, search
(Created page with '* Add [policyd] section in settings.ini for policyd integration.')
Line 1: Line 1:
-
* Add [policyd] section in settings.ini for policyd integration.
+
= Update configure file settings.ini =
 +
We removed some settings and add some new in configure file '''settings.ini''', please update it before you use it.
 +
 
 +
* Removed settings:
 +
{{cfg|settings.ini|<pre>
 +
trace_level =
 +
protocol_version =
 +
default_pw_scheme =
 +
</pre>}}
 +
 
 +
* New settings:
 +
{{cfg|settings.ini|<pre>
 +
 
 +
[policyd]
 +
# -------------------------------------------------------------------
 +
# Settings used for Policyd (1.8.x) integration. Provides global
 +
# white-/blacklist, sender/recipient throttling, etc.
 +
# -------------------------------------------------------------------
 +
#
 +
# Enable policyd integration: True, False.
 +
enabled = True
 +
 
 +
# SQL Database used to store policyd data, eg. whitelist, blacklist.
 +
# You can find related information in policyd config files:
 +
#  - On RHEL/CentOS:  /etc/policyd.conf
 +
#  - On Debian/Ubuntu: /etc/postfix-policyd.conf
 +
#  - On FreeBSD:      /usr/local/etc/policyd.conf
 +
# Related parameters:
 +
#  host    -> MYSQLHOST
 +
#  port    -> 3306 (Default)
 +
#  db      -> MYSQLDBASE
 +
#  user    -> MYSQLUSER
 +
#  passwd  -> MYSQLPASS
 +
dbn = mysql
 +
host = localhost
 +
port = 3306
 +
db = policyd
 +
user = policyd
 +
passwd = passwd
 +
</pre>}}

Revision as of 00:55, 14 September 2010

Update configure file settings.ini

We removed some settings and add some new in configure file settings.ini, please update it before you use it.

  • Removed settings:
File: settings.ini
trace_level = 
protocol_version =
default_pw_scheme =
  • New settings:
File: settings.ini

[policyd]
# -------------------------------------------------------------------
# Settings used for Policyd (1.8.x) integration. Provides global
# white-/blacklist, sender/recipient throttling, etc.
# -------------------------------------------------------------------
#
# Enable policyd integration: True, False.
enabled = True

# SQL Database used to store policyd data, eg. whitelist, blacklist.
# You can find related information in policyd config files:
#   - On RHEL/CentOS:   /etc/policyd.conf
#   - On Debian/Ubuntu: /etc/postfix-policyd.conf
#   - On FreeBSD:       /usr/local/etc/policyd.conf
# Related parameters:
#   host    -> MYSQLHOST
#   port    -> 3306 (Default)
#   db      -> MYSQLDBASE
#   user    -> MYSQLUSER
#   passwd  -> MYSQLPASS
dbn = mysql
host = localhost
port = 3306
db = policyd
user = policyd
passwd = passwd
Personal tools