Quantcast
Channel: iRedMail — iRedMail Support
Viewing all 12099 articles
Browse latest View live

Postfix does not rejects unknow sender adresses

$
0
0

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

Postfix delivers internal mails from none existing users. Is there anyway to check if the sender email is an valid user in my domain?

For example:

l@r ~ % telnet host.com 25
Trying 1.2.3.4...
Connected to host.com.
Escape character is '^]'.
220 host.com ESMTP Postfix
helo host.com
250 host.com
mail from: noneexistinguser@host.com
250 2.1.0 Ok
rcpt to: existinguser@host.com
250 2.1.5 Ok
data
354 End data with <CR><LF>.<CR><LF>
asdasdasdasd
.
250 2.0.0 Ok: queued as 658732332FF

But when i am using _mail from_ with an existing user, postfix denys it correctly because I am not logged in.

l@r ~ % telnet host.com 25
Trying 1.2.3.4...
Connected to host.com.
Escape character is '^]'.
220 host.com ESMTP Postfix
helo host.com
250 host.com
mail from: existinguser@host.com
250 2.1.0 Ok
rcpt to: existinguser@differenthost.com
553 5.7.1 <existing@differenthost.com>: Sender address rejected: not logged in

postconf -n output: (cut)

smtpd_reject_unlisted_sender = yes
smtpd_sender_login_maps = proxy:mysql:/usr/local/etc/postfix/mysql/sender_login_maps.cf
smtpd_sender_restrictions = permit_mynetworks, reject_sender_login_mismatch, permit_sasl_authenticated


How to combine settings iredmail and nginx?

$
0
0

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.4
- Linux/BSD distribution name and version: Ubuntu 15.10
- 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 need to get a workable web (done) and mail server (running, except for the Web interface)
On the net put ubuntu iredmail, I created a business address, and then transferred the configuration existing web server (nginx, php, mysql) - set up and it works, but it is impossible to combine settings for nginx c iredmail existing web server configuration.

iredmail put in /opt/www/iredadmin and /opt/www/roundcubemail necessary to make them accessible and domain.com/iredadmin domain.com/roundcube but I not succeed.

ln -s /opt/www/iredadmin/ /var/www/domain/iredadmin
ln -s /opt/www/roundcube/ /var/www/domain/roundcube
In nginx.conf - general settings and include

include /etc/nginx/conf.d/.conf;
include / etc / nginx / sites-enabled /;

fastcgi_cache_path /var/cache/nginx levels= keys_zone=wholepage:50m;

    server {
        listen       80;
        server_name  192.168.1.6 domain.com www.domain.com;
    access_log  /var/log/nginx/domain-access.log  main;
    error_log  /var/log/nginx/domain-error.log;
    server_name_in_redirect off;
#   rewrite ^([^.\?]*[^/])$ $1/ permanent;
    large_client_header_buffers 4 81920; #Fix for largest URI
    etag on;    
    expires 3d;
    if ($host ~ !^(domain.com|www.domain.com)$) {
            rewrite ^ http://www.domain.com$request_uri? permanent;  
}

location /static {
    root /data;
    expires max;
}   


       location / {
            root   /var/www/domain;
            index  index.php index.html index.htm;
            try_files $uri $uri/ /index.php?$args;
        proxy_read_timeout 600;

    location ~* ^/roundcube {
#        auth_basic "Admin Login";
#        auth_basic_user_file /etc/nginx/pass/roundcube_pass;
    fastcgi_pass   unix:/var/run/php-fpm.socket;
        include        /etc/nginx/fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        }

        }
        # deny running scripts inside writable directories
        location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {
                return 403;
                error_page 403 /403_error.html;
        }
    location ~ \.php$ {
            root  /var/www/domain;
#       if_modified_since off;
#       fastcgi_pass 127.0.0.1:9000;
        fastcgi_pass unix:/var/run/php-fpm.socket;  
            fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass_header Last-Modified;
        include fastcgi_params;
    } 

After access to http://domain.com/roundcube/ - in browser - error "File not found"

In /var/log/nginx/domain-error.log

*43490 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: .... , server: .... , req uest: "GET /roundcube/ HTTP/1.1", upstream: "fastcgi://unix:/var/run/php-fpm.socket:", host: "domain.com"

Help please!

Owner games in 0.9.4

$
0
0

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

Hi, I had installed a server with Centos 7 and iredMail 0.9.3
I didn't had configured anything in iredMail.
Today I checked that a new version was ready to download. So I did it and unpacked the files and run config script iRedMail.sh
Nothing to report here
Reboot and lost access to server with ssh.
Can't access any configuration page.

Looking at files in server the new directory has owner 501 games and inside the new directory iRedMail.0.9.4 some files and directory have the same owner.

What happened?

550 DKIM verify fail (in reply to end of DATA command)

$
0
0

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

My DKIM signature is being verified good "pass" by gmail, yahoo, hotmail.
But some mail server, especially from China fails to verify my dkim signature

您发送到 xxx@receiving_server.cn 的邮件被收件人服务器拒收了,对方服务器返回的原因如下:
SMTP error, DOT: 550 DKIM verify fail.
您的原信请看附件。

Your message to xxxx@receiving_server.cn was rejected by the recipient domain. The error that the other server returned was:
" SMTP error, DOT: 550 DKIM verify fail".
Your original message is included as attachment.

I use a sub-domain for as "from sender"
Sub-domain is validated by "amavisd-new testkeys"
DNS record is set for sub-domain dkim.
But My main domain does NOT have a dkim entry.
Main domain and sub-domain DNS records hosted in different servers.

Why does it fail with some servers?
Do those failing severs check main domain DNS server for sub-domain records?

Attachments with GZ compression

$
0
0

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

New trend in sending EXE files is by compressing them in GZ.
Mail server passes them unchecked.

How to implement to stop all EXE files in GZ compressed form?

Roundcube Webmail Alias

$
0
0

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.4
- Linux/BSD distribution name and version: Ubuntu 14.04
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Apache
====

Hello,

Let's say the address to my iRedMail server is domain.com. I access my webmail through domain.com/mail and I have also added three other domains to my iRedMail server:

domain1.com
domain2.com
domain3.com

I want to be able to access the webmail for each of the domains I have added like this:

domain1.com/mail
domain2.com/mail
domain3.com/mail

I don't want to use redirect. How do I achieve this?

Thanks in advance.

/ASZ

Godaddy SSL cert .ca-batch issue

$
0
0

iRedmail SSL instructions say that you should get two files when you buy an SSL cert (I purchased my SSL from Godaddy). I did get two files, but they are both ".crt" files. iRedmail expects 2nd one to be a ".ca-bundle". (see http://www.iredmail.org/docs/use.a.boug … ate.html).

Is there a way to convert a ".crt" to a ".ca-bundle"? have you seen this issue with GoDaddy certs before?

I did call GoDaddy and spoke with level 1 and level 2 SSL support. Neither one had any idea what a ".ca-bundle" file was.

The first ".crt" file seems to be just for my domain and the 2nd one that seems to have several certs in it.

I only do SSL certs once every 3 years. wink

https://casecurity.ssllabs.com/analyze. … atsite.com gives me a "B" grade. Says I have "chain issues".

Thoughts?

~ bTal

Suggestion: Add how to disable greylist in "Managing iRedAPD" page

$
0
0

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.4
- Linux/BSD distribution name and version: FreeBSD 10.2-RELEASE-P12
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Apache
- Manage mail accounts with iRedAdmin-Pro? Negative
- Related log if you're reporting an issue: N/A - Suggestion
====

Hey..

It would be a good idea to add how to disable greylisting completely in this document:

http://www.iredmail.org/docs/manage.iredapd.html

It states one fix would be to disable greylisting.. I know several that do completely yet it doesn't actually go into detail on how to disable greylisting in iRedAPD. I would assume you just remove the greylist plugin from the plugin line..

So I guess this is an ask how to disable greylisting in iRedAPD and to possibly add this to the documentation on how to do so for future usage.

Thanks!


How familiar is iRedMail with the Roundcube plugins?

$
0
0

I think first of all the registration plugin... If I install this plugin, and a user register for an email address, will it work with iRedmail or should I do extra development?

Error 550-5.7.1 when trying to send emails to gmail.com

$
0
0

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

Hello dear community.

I have really strange problem. So far i used to send and receive emails without any problem, but today i have problem.

My problem is only with gmail.com. There is the error that i receive when i try to send an email to account at gmail.com.

Action: failed
Status: 5.7.1
Remote-MTA: dns; gmail-smtp-in.l.google.com
Diagnostic-Code: smtp; 550-5.7.1 [77.85.204.32] The IP address sending this
    message does not have a PTR 550-5.7.1 record setup. As a policy, Gmail does
    not accept messages from IPs 550-5.7.1 with missing PTR records. Please
    visit 550-5.7.1
    https://support.google.com/mail/answer/81126#authentication for more 550
    5.7.1 information. d4si4817657wjn.111 - gsmtp

My reverse DNS is pointing to mail.vivashost.com with CNAME. Where my mistake can be ?

Thanks in advance!

Unlimited users

$
0
0

Hello,

I want to use iredmail free edition.
But i want to know if we can add unlimited user mail for only one domain ?

Thanks you.

Message subject get SPAM flag

$
0
0

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

I just upgraded my setup from 0.9.2 to 0.9.3 and then to 0.9.4

after that all my messages get out from the server with Subject changed and SPAM is being added to it

any ideas ??

Domain alias & 550 5.1.1 Recipient address rejected....

$
0
0

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.2
- Linux/BSD distribution name and version: Centos 6.7
- 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:
====

When mails are sent to the user@aliasdomain.tld a "550 5.1.1 Recipient address rejected: User unknown in virtual mailbox table" occur.

We have create an entry in alias_domain table of the vmail database with those datas :

alias_domain     target_domain created                     modified                 active
aliasdomain.tld ourdomain.tlf   2016-02-03 00:00:00 0000-00-00 00:00:00 1

our postconf result :

alias_database = hash:/etc/postfix/aliases
alias_maps = hash:/etc/postfix/aliases
allow_min_user = no
allow_percent_hack = no
biff = no
bounce_queue_lifetime = 4h
broken_sasl_auth_clients = yes
command_directory = /usr/sbin
config_directory = /etc/postfix
content_filter = smtp-amavis:[127.0.0.1]:10024
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
debug_peer_level = 2
debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin ddd $daemon_directory/$process_name $process_id & sleep 5
delay_warning_time = 0h
disable_vrfy_command = yes
dovecot_destination_recipient_limit = 1
enable_original_recipient = no
home_mailbox = Maildir/
html_directory = no
inet_interfaces = all
inet_protocols = ipv4
lmtp_tls_mandatory_protocols = !SSLv2 !SSLv3
lmtp_tls_protocols = !SSLv2 !SSLv3
mail_owner = postfix
mailbox_command = /usr/libexec/dovecot/deliver
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
maximal_backoff_time = 4000s
maximal_queue_lifetime = 4h
message_size_limit = 20971520
minimal_backoff_time = 300s
mydestination = $myhostname, localhost, localhost.localdomain
mydomain = *********************
myhostname = ********************
mynetworks = 127.0.0.1, 5.39.77.51
mynetworks_style = host
myorigin = *******************
newaliases_path = /usr/bin/newaliases.postfix
proxy_read_maps = $canonical_maps $lmtp_generic_maps $local_recipient_maps $mydestination $mynetworks $recipient_bcc_maps $recipient_canonical_maps $relay_domains $relay_recipient_maps $relocated_maps $sender_bcc_maps $sender_canonical_maps $smtp_generic_maps $smtpd_sender_login_maps $transport_maps $virtual_alias_domains $virtual_alias_maps $virtual_mailbox_domains $virtual_mailbox_maps $smtpd_sender_restrictions
queue_directory = /var/spool/postfix
queue_run_delay = 300s
readme_directory = /usr/share/doc/postfix-2.11.0/README_FILES
recipient_bcc_maps = proxy:mysql:/etc/postfix/mysql/recipient_bcc_maps_user.cf, proxy:mysql:/etc/postfix/mysql/recipient_bcc_maps_domain.cf
recipient_delimiter = +
relay_domains = $mydestination, proxy:mysql:/etc/postfix/mysql/relay_domains.cf
sample_directory = /usr/share/doc/postfix-2.11.0/samples
sender_bcc_maps = proxy:mysql:/etc/postfix/mysql/sender_bcc_maps_user.cf, proxy:mysql:/etc/postfix/mysql/sender_bcc_maps_domain.cf
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtp-amavis_destination_recipient_limit = 1
smtp_data_init_timeout = 240s
smtp_data_xfer_timeout = 600s
smtp_tls_loglevel = 0
smtp_tls_mandatory_protocols = !SSLv2 !SSLv3
smtp_tls_note_starttls_offer = yes
smtp_tls_protocols = !SSLv2 !SSLv3
smtp_tls_security_level = may
smtpd_data_restrictions = reject_unauth_pipelining
smtpd_delay_reject = yes
smtpd_end_of_data_restrictions = check_policy_service inet:127.0.0.1:7777, check_policy_service inet:127.0.0.1:10031,
smtpd_helo_required = yes
smtpd_helo_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_non_fqdn_helo_hostname, reject_invalid_helo_hostname, check_helo_access pcre:/etc/postfix/helo_access.pcre
smtpd_recipient_restrictions = reject_unknown_sender_domain, reject_unknown_recipient_domain, reject_non_fqdn_sender, reject_non_fqdn_recipient, reject_unlisted_recipient, check_policy_service inet:127.0.0.1:7777, permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_non_fqdn_helo_hostname, reject_invalid_helo_hostname, check_policy_service inet:[127.0.0.1]:10031, reject_rbl_client all.spam-rbl.fr
smtpd_reject_unlisted_recipient = yes
smtpd_reject_unlisted_sender = yes
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain =
smtpd_sasl_path = private/dovecot-auth
smtpd_sasl_security_options = noanonymous
smtpd_sasl_type = dovecot
smtpd_sender_login_maps = proxy:mysql:/etc/postfix/mysql/sender_login_maps.cf
smtpd_sender_restrictions = reject_unknown_sender_domain, reject_non_fqdn_sender, reject_unlisted_sender, permit_mynetworks, reject_unauthenticated_sender_login_mismatch, permit_sasl_authenticated
smtpd_tls_cert_file = /etc/postfix/tls/smtpd.pem
smtpd_tls_dh1024_param_file = /etc/pki/tls/dhparams.pem
smtpd_tls_key_file = /etc/postfix/tls/smtpd.pem
smtpd_tls_loglevel = 0
smtpd_tls_mandatory_exclude_ciphers = aNULL, eNULL, EXPORT, DES, RC4, MD5, PSK, aECDH, EDH-DSS-DES-CBC3-SHA, EDH-RSA-DES-CDC3-SHA, KRB5-DE5, CBC3-SHA
smtpd_tls_mandatory_protocols = !SSLv2 !SSLv3
smtpd_tls_protocols = !SSLv2 !SSLv3
smtpd_tls_security_level = may
strict_rfc821_envelopes = yes
swap_bangpath = no
tls_random_source = dev:/dev/urandom
transport_maps = proxy:mysql:/etc/postfix/mysql/transport_maps_user.cf, proxy:mysql:/etc/postfix/mysql/transport_maps_domain.cf, hash:/etc/postfix/transport
unknown_local_recipient_reject_code = 550
virtual_alias_domains =
virtual_alias_maps = proxy:mysql:/etc/postfix/mysql/virtual_alias_maps.cf, proxy:mysql:/etc/postfix/mysql/domain_alias_maps.cf, proxy:mysql:/etc/postfix/mysql/catchall_maps.cf, proxy:mysql:/etc/postfix/mysql/domain_alias_catchall_maps.cf
virtual_gid_maps = static:2000
virtual_mailbox_base = /var/vmail
virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql/virtual_mailbox_domains.cf
virtual_mailbox_maps = proxy:mysql:/etc/postfix/mysql/virtual_mailbox_maps.cf
virtual_minimum_uid = 2000
virtual_transport = dovecot
virtual_uid_maps = static:2000

I don't see what we miss ....

Regards

RoundCube Password plugin error after upgrading

$
0
0

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

After upgrading iredmail I did upgrade roundcube to 1.1.4 , after that password plugin is not working and my bad there is no backup to the old roundcube settings, whenever I press change password I get error 500 I tried to edit password config file with correct credentials but still not working.

Thanks.

Gmails sends all my emails to spam folder!

$
0
0

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

For some reason all emails sent by me to gmail accounts are sent to spam folder to their recipients.

My mail server is mail.vivashost.com. Can you tell me why all my emails are marked as spam. Where can be my mistake and how can i fix it ?

Thanks in advance!


Add domains to Awstats

$
0
0

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

I have awstats installed with the installation of iRedMail.
However i have many other virual domains added to this host. With Apache2 i have created rules like this:

   

<VirtualHost *:80> 
         ServerAdmin postmaster@vivashost.com
         ServerName adddomain.com
         ServerAlias www.adddomain.com
         DocumentRoot /var/www/html/adddomain.com/
         <Directory "/var/www/html/adddomain.com">
                    AllowOverride All
            </Directory>

    </VirtualHost>

And i have many other domains added like this to this host.
However when i open my Awstats i see only the results for mail.vivashost.com which is my host main domain that i use for my mail server.

My question is how can i add all other domains which i host on this host so i can see their stats also ?

Thanks in advance!

Help for setting up DKIM

$
0
0

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

I am using GoDaddy.com and maybe it's silly but i do not have an idea of how to properly set DKIM records.
When i check iRedMail.tips i can see that  i have this:

DNS record for DKIM support:

; key#1, domain vivashost.com, /var/lib/dkim/vivashost.com.pem
dkim._domainkey.vivashost.com.    3600 TXT (
  "v=DKIM1; p="
  "long-codehere....")

What should i take from this and where should i place it ?

Recieving from gmail

$
0
0

==== Required information ====
- iRedMail version: 0.9.0
- Linux/BSD distribution name and version: 7.8
- Store mail accounts in which backend: LDAP
- Web server: Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- Related log if you're reporting an issue:
 
Feb  3 17:30:45 vps40496 postfix/smtpd[8619]: connect from mail-ig0-x242.google.com[2607:f8b0:4001:c05::242]
Feb  3 17:30:46 vps40496 postfix/smtpd[8619]: NOQUEUE: reject: RCPT from mail-ig0-x242.google.com[2607:f8b0:4001:c05::242]: 450 4.7.1 <ed@edbabcock.com>: Recipient address rejected: Access denied; from=<greenyouse1@gmail.com> to=<ed@edbabcock.com> proto=ESMTP helo=<mail-ig0-x242.google.com>
Feb  3 17:30:46 vps40496 postfix/smtpd[8619]: disconnect from mail-ig0-x242.google.com[2607:f8b0:4001:c05::242]
===

Hi, I'm having some trouble receiving mails from gmail but all other domains seem to work fine. All emails from gmail get the "Reciepient address rejected" message. Is it anything weird with IPv6 or TLS settings? I have IPv6 set up so sending to gmail works without an issue.

I'd be happy to supply more context or details, just let me know what would help!

Very specific 0.9.2. to 0.9.3 upgrade question

$
0
0

Hi,

When upgrading from 0.9.2 to 0.9.3 under the "Amavisd: Fix incorrect setting which treats external sender as internal user" section
is the "$originating = 1;" that needs to be commented out
here

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

Additionally when adding

$interface_policy{'10026'} = 'ORIGINATING';

should one also leave

$interface_policy{'9998'} = 'AM.PDP-INET';

in place?

Thanks.

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

Mailbox full with messages: sogo_alarms_folder' doesn't exist

$
0
0

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.4
- Linux/BSD distribution name and version: FreeBSD 10.2
- 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:
====

Hi,

I just installed a fresh server with iRedMail (3x already, but problem insists), right after the installation SOGo does not populate the MySQL database. I can access the SOGo mailbox (postmaster), receive and send email, but it dows not store the preferences.
So I looked into the database and the SOGo database exists, but is totally empty.

Config is standard, nothing got changed, right after installation I have this problem.

These 2 mails come every few mins:

2016-02-04 07:33:00.252 sogo-tool[7358:100180] Table 'sogo.sogo_sessions_folder' doesn't exist
Abort trap
Feb 04 07:33:00 sogo-ealarms-notify [7357]: [ERROR] <0x0x80de8d9d0[GCSAlarmsFolder]> -[GCSAlarmsFolder recordsForEntriesFromDate:toDate:]: cannot execute fetch: <MySQL4Exception: 0x80deeb620> NAME:ExecutionFailed REASON:Table 'sogo.sogo_alarms_folder' doesn't exist
Feb 04 07:33:00 sogo-ealarms-notify [7357]: [ERROR] <0x0x810178770[GCSAlarmsFolder]> -[GCSAlarmsFolder deleteRecordsForEntriesUntilDate:]: cannot delete record: <MySQL4Exception: 0x80deebd40> NAME:ExecutionFailed REASON:Table 'sogo.sogo_alarms_folder' doesn't exist

and:

Cron <root@bitmail> /usr/local/bin/python /opt/iredapd/tools/spf_to_greylist_whitelists.py &>/dev/null

every 10 mins, but I fugured already out that that is by design, any reason for doing that cron job every 10 mins and send 6 emails per hour about that??

Any light how I can tell SOGo to populate it´s table?

Like I wrote above, I reinstalled 3 times, all 3x with same result, so 100% reproducable.

cheers,

Viewing all 12099 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>