1 (edited by Ange7 2015-12-31 21:44:09)

Topic: how to fix Multi Errors

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.3
- Linux/BSD distribution name and version:  Debian Jessie
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- Related log if you're reporting an issue: 
====

I upgrade from 0.9.2 to 0.9.3 iredmail and i have some error in log : (/var/log/iredapd/iredapd.log)

2015-12-31 14:21:16 INFO Starting iRedAPD (version: 1.7.0, backend: mysql), listening on 127.0.0.1:7777.
2015-12-31 14:21:16 INFO Log rotate type: time, interval: W6, backup copies: 12.
2015-12-31 14:21:16 INFO Plugin amavisd_message_size_limit (/opt/iredapd/plugins/amavisd_message_size_limit.py) does not exist.
2015-12-31 14:21:16 INFO Loading plugin: reject_null_sender
2015-12-31 14:21:16 INFO Loading plugin: amavisd_wblist
2015-12-31 14:21:16 INFO Loading plugin: sql_alias_access_policy

No critical i think ?

Other error, multi lines :

2015-12-31 12:25:47 ERROR Unexpected error: (OperationalError) (1045, "Access denied for user 'iredadmin'@'localhost' (using password: YES)") None None. Fallback to default action: DUNNO
2015-12-31 12:26:08 ERROR Unexpected error: (OperationalError) (1045, "Access denied for user 'iredadmin'@'localhost' (using password: YES)") None None. Fallback to default action: DUNNO
2015-12-31 13:05:43 ERROR Unexpected error: (OperationalError) (1045, "Access denied for user 'iredadmin'@'localhost' (using password: YES)") None None. Fallback to default action: DUNNO

Other (/var/log/dovecot.log) :

Dec 31 14:15:25 imap(contact@devnco.fr): Debug: acl vfile: file //var/vmail/vmail1/devnco.fr/c/o/n/contact-2015.07.09.11.14.31//Maildir/.Sent/dovecot-acl not found
Dec 31 14:15:25 imap(contact@devnco.fr): Debug: acl vfile: file //var/vmail/vmail1/devnco.fr/c/o/n/contact-2015.07.09.11.14.31//Maildir/.Junk/dovecot-acl not found
Dec 31 14:15:25 imap(contact@devnco.fr): Debug: acl vfile: file //var/vmail/vmail1/devnco.fr/c/o/n/contact-2015.07.09.11.14.31//Maildir/.Archive/dovecot-acl not found
Dec 31 14:15:25 imap(contact@devnco.fr): Debug: acl vfile: file //var/vmail/vmail1/devnco.fr/c/o/n/contact-2015.07.09.11.14.31//Maildir/.Trash/dovecot-acl not found
Dec 31 14:15:25 imap(contact@devnco.fr): Debug: acl vfile: file //var/vmail/vmail1/devnco.fr/c/o/n/contact-2015.07.09.11.14.31//Maildir/.Notes/dovecot-acl not found
Dec 31 14:15:25 imap(contact@devnco.fr): Debug: acl vfile: file //var/vmail/vmail1/devnco.fr/c/o/n/contact-2015.07.09.11.14.31//Maildir/.Drafts/dovecot-acl not found

I don't think it's follow to the upgrade, maybe i had error before.

And one question : to upgrad i readed the «how to» i just want be sure that in /etc/amavis/conf.d/50-user i must comment all block « $policy_bank{'MYUSERS'} = { » & comment line originating :

# Make sure it sings all inbound mails, avoid error log like this:
# 'dkim: not signing inbound mail'.
# $originating = 1;


thank you for your help

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: how to fix Multi Errors

ok, found in /opt/iredapd/settings.py :

# Log reject (and other non-DUNNO) action in iRedAdmin SQL database
log_action_in_db = True
iredadmin_db_server = '127.0.0.1'
iredadmin_db_port = '3306'
iredadmin_db_name = 'iredadmin'
iredadmin_db_user = 'iredadmin'
iredadmin_db_password = 'password'

I don't know why «iredadmin_db_password» is not the same that in «/opt/www/iredadmin/settings.py» ?

3

Re: how to fix Multi Errors

Ange7 wrote:

2015-12-31 14:21:16 INFO Plugin amavisd_message_size_limit (/opt/iredapd/plugins/amavisd_message_size_limit.py) does not exist.

It's safe to ignore. But you'd better remove this plugin name "amavisd_message_size_limit" in /opt/iredapd/settings.py (parameter "plugins =").

Ange7 wrote:

2015-12-31 12:25:47 ERROR Unexpected error: (OperationalError) (1045, "Access denied for user 'iredadmin'@'localhost' (using password: YES)") None None. Fallback to default action: DUNNO

You have wrong password for SQL user "iredadmin" in /opt/iredapd/settings.py. Please double check.

Ange7 wrote:

Dec 31 14:15:25 imap(contact@devnco.fr): Debug: acl vfile: file //var/vmail/vmail1/devnco.fr/c/o/n/contact-2015.07.09.11.14.31//Maildir/.Drafts/dovecot-acl not found

Normal message, Dovecot just logs this when it tries to find an ACL file. nothing to worry about.

4

Re: how to fix Multi Errors

thank you for answer