Upgrade/iRedAdmin-Pro/LDAP/1.3.0-1.4.0
From iRedMail
(Difference between revisions)
| Line 1: | Line 1: | ||
| - | + | __TOC__ | |
| - | + | ||
| - | + | ||
| - | * Display real-time mailbox usage: | + | * Release notes of iRedAdmin-Pro-1.4.0: [[Release.Notes/iRedAdmin-Pro/LDAP/1.4.0]] |
| - | + | ||
| - | + | = New features = | |
| + | == Better SPAM management with Amavisd + MySQL integration == | ||
| + | With Amavisd + MySQL integration, you can view sent/received mail logs in iRedAdmin-Pro, quarantine SPAM into MySQL, release or delete quarantined SPAMs. | ||
| + | |||
| + | Here's steps: | ||
| + | |||
| + | * [[iRedMail/FAQ/Integrate.MySQL.in.Amavisd |Integrate MySQL in Amavisd]] | ||
| + | * [[iRedMail/FAQ/Quarantining.Messages |Quarantining SPAM into MySQL with Amavisd]] | ||
| + | |||
| + | == Display real-time mailbox usage == | ||
| + | This feature requires dovecot-1.2 and its dictquota support, so if you're still running dovecot-1.1, please upgrade it. | ||
| + | |||
| + | Here's steps: | ||
| + | * [[iRedMail/FAQ/Upgrade.Dovecot.1.1.to.1.2 |Upgrade Dovecot 1.1.x to 1.2.x]] | ||
| + | * [[iRedMail/FAQ/Store.Realtime.Quota.In.MySQL |Store Realtime Quota in MySQL with Dovecot 1.2]] | ||
| + | |||
| + | = Enable new version = | ||
| + | |||
| + | To active new version of iRedAdmin-Pro, we need to: | ||
| + | * Uncompress iRedAdmin-Pro-1.4.0.tar.bz2 | ||
| + | * Copy it to correct directory | ||
| + | * Replace old symbol link | ||
| + | |||
| + | Here we go: | ||
| + | |||
| + | * For RHEL/CentOS users: | ||
| + | {{cmd|<pre> | ||
| + | # tar xjf iRedAdmin-Pro-1.4.0.tar.bz2 | ||
| + | # cp -rf iRedAdmin-Pro-1.4.0 /var/www/ | ||
| + | # cd /var/www/ | ||
| + | # rm iredadmin # This is old symbol link. | ||
| + | # ln -s iRedAdmin-Pro-1.4.0 iredadmin | ||
| + | </pre>}} | ||
| + | |||
| + | * For Debian/Ubuntu users: | ||
| + | {{cmd|<pre> | ||
| + | # tar xjf iRedAdmin-Pro-1.4.0.tar.bz2 | ||
| + | # cp -rf iRedAdmin-Pro-1.4.0 /usr/share/apache2/ | ||
| + | # cd /usr/share/apache2/ | ||
| + | # rm iredadmin # This is old symbol link. | ||
| + | # ln -s iRedAdmin-Pro-1.4.0 iredadmin | ||
| + | </pre>}} | ||
| + | |||
| + | * For FreeBSD users: | ||
| + | {{cmd|<pre> | ||
| + | # tar xjf iRedAdmin-Pro-1.4.0.tar.bz2 | ||
| + | # cp -rf iRedAdmin-Pro-1.4.0 /usr/local/www/ | ||
| + | # cd /usr/local/www/ | ||
| + | # rm iredadmin # This is old symbol link. | ||
| + | # ln -s iRedAdmin-Pro-1.4.0 iredadmin | ||
| + | </pre>}} | ||
| + | |||
| + | = Update iRedAdmin-Pro configure file settings.ini = | ||
| + | We removed some settings and add some new in configure file '''settings.ini''', please update it before you use it. | ||
| + | |||
| + | You should backup old '''settings.ini''', copy '''settings.ini.ldap.sample''' as new configure file, and then sync settings between these two files. | ||
| + | |||
| + | * Removed settings: | ||
| + | {{cfg|settings.ini|<pre> | ||
| + | skin = | ||
| + | mailbox_type = | ||
| + | hashed_maildir = | ||
| + | dbn = | ||
| + | </pre>}} | ||
| + | |||
| + | * New settings (used for Amavisd integration): | ||
| + | |||
| + | {{cfg|settings.ini|<pre> | ||
| + | [amavisd] | ||
| + | quarantine = False | ||
| + | quarantine_port = 9998 | ||
| + | |||
| + | logging_into_sql = False | ||
| + | host = 127.0.0.1 | ||
| + | port = 3306 | ||
| + | db = amavisd | ||
| + | user = amavisd | ||
| + | passwd = mypasswd | ||
| + | </pre>}} | ||
| + | |||
| + | = Restart Apache to make it work = | ||
| + | * For RHEL/CentOS user: | ||
| + | {{cmd|<pre> | ||
| + | # /etc/init.d/httpd restart | ||
| + | </pre>}} | ||
| + | |||
| + | * For Debian/Ubuntu user: | ||
| + | {{cmd|<pre> | ||
| + | # /etc/init.d/apache2 restart | ||
| + | </pre>}} | ||
| + | |||
| + | * For FreeBSD user: | ||
| + | {{cmd|<pre> | ||
| + | # /usr/local/etc/rc.d/apache22 restart | ||
| + | </pre>}} | ||
Revision as of 03:45, 30 December 2010
Contents |
- Release notes of iRedAdmin-Pro-1.4.0: Release.Notes/iRedAdmin-Pro/LDAP/1.4.0
New features
Better SPAM management with Amavisd + MySQL integration
With Amavisd + MySQL integration, you can view sent/received mail logs in iRedAdmin-Pro, quarantine SPAM into MySQL, release or delete quarantined SPAMs.
Here's steps:
Display real-time mailbox usage
This feature requires dovecot-1.2 and its dictquota support, so if you're still running dovecot-1.1, please upgrade it.
Here's steps:
Enable new version
To active new version of iRedAdmin-Pro, we need to:
- Uncompress iRedAdmin-Pro-1.4.0.tar.bz2
- Copy it to correct directory
- Replace old symbol link
Here we go:
- For RHEL/CentOS users:
| Terminal: |
# tar xjf iRedAdmin-Pro-1.4.0.tar.bz2 # cp -rf iRedAdmin-Pro-1.4.0 /var/www/ # cd /var/www/ # rm iredadmin # This is old symbol link. # ln -s iRedAdmin-Pro-1.4.0 iredadmin |
- For Debian/Ubuntu users:
| Terminal: |
# tar xjf iRedAdmin-Pro-1.4.0.tar.bz2 # cp -rf iRedAdmin-Pro-1.4.0 /usr/share/apache2/ # cd /usr/share/apache2/ # rm iredadmin # This is old symbol link. # ln -s iRedAdmin-Pro-1.4.0 iredadmin |
- For FreeBSD users:
| Terminal: |
# tar xjf iRedAdmin-Pro-1.4.0.tar.bz2 # cp -rf iRedAdmin-Pro-1.4.0 /usr/local/www/ # cd /usr/local/www/ # rm iredadmin # This is old symbol link. # ln -s iRedAdmin-Pro-1.4.0 iredadmin |
Update iRedAdmin-Pro configure file settings.ini
We removed some settings and add some new in configure file settings.ini, please update it before you use it.
You should backup old settings.ini, copy settings.ini.ldap.sample as new configure file, and then sync settings between these two files.
- Removed settings:
| File: settings.ini |
skin = mailbox_type = hashed_maildir = dbn = |
- New settings (used for Amavisd integration):
| File: settings.ini |
[amavisd] quarantine = False quarantine_port = 9998 logging_into_sql = False host = 127.0.0.1 port = 3306 db = amavisd user = amavisd passwd = mypasswd |
Restart Apache to make it work
- For RHEL/CentOS user:
| Terminal: |
# /etc/init.d/httpd restart |
- For Debian/Ubuntu user:
| Terminal: |
# /etc/init.d/apache2 restart |
- For FreeBSD user:
| Terminal: |
# /usr/local/etc/rc.d/apache22 restart |
