26

Re: FreeBSD 12 clear install

3m wrote:

Aug 18 10:59:23 test postfix/cleanup[1138]: fatal: 127.0.0.1:: missing service information

Did you see any error in Postfix main.cf or master.cf? I can not reproduce this error locally.

----

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

27

Re: FreeBSD 12 clear install

where can i see them?

28

Re: FreeBSD 12 clear install

- Run `postfix check`, or restart postfix service and check its log file (/var/log/maillog) immediately.
- After postfix is running, try to send and receive some emails and check its log file.

29

Re: FreeBSD 12 clear install

3m wrote:

Aug 18 10:59:23 test postfix/cleanup[1138]: fatal: 127.0.0.1:: missing service information

This issue has been fixed, it's a bug of iRedMail development edition. You can simply fix it by appending port number 8893 to below 2 parameters in Postfix main.cf, then restart postfix service:

smtpd_milters = inet:127.0.0.1:8893
non_smtpd_milters = inet:127.0.0.1:8893

30

Re: FreeBSD 12 clear install

Hi! Sending and receiving messages works. another problem, it is impossible to create an account in email clients (Mozilla Thunderbird)/

Aug 20 20:37:12 test dovecot[839]: imap-login: Disconnected (disconnected before auth was ready, waited 0 secs): user=<>, rip=192.168.0.107, lip=192.168.0.100, TLS: SSL_read failed: error:1404C418:SSL routines:ST_OK:tlsv1 alert unknown ca: SSL alert number 48, session=<RaMX6I+QetDAqABr>

Aug 20 20:37:12 test postfix/submission/smtpd[5545]: connect from unknown[192.168.0.107]
Aug 20 20:37:12 test postfix/submission/smtpd[5545]: lost connection after CONNECT from unknown[192.168.0.107]
Aug 20 20:37:12 test postfix/submission/smtpd[5545]: disconnect from unknown[192.168.0.107] commands=0/0
Aug 20 20:37:12 test postfix/submission/smtpd[5547]: connect from unknown[192.168.0.107]
Aug 20 20:37:12 test postfix/submission/smtpd[5547]: lost connection after CONNECT from unknown[192.168.0.107]
Aug 20 20:37:12 test postfix/submission/smtpd[5547]: disconnect from unknown[192.168.0.107] commands=0/0

31

Re: FreeBSD 12 clear install

3m wrote:

it is impossible to create an account in email clients (Mozilla Thunderbird)/
Aug 20 20:37:12 test dovecot[839]: imap-login: Disconnected (disconnected before auth was ready, waited 0 secs): user=<>, rip=192.168.0.107, lip=192.168.0.100, TLS: SSL_read failed: error:1404C418:SSL routines:ST_OK:tlsv1 alert unknown ca: SSL alert number 48, session=<RaMX6I+QetDAqABr>

Seems caused by self-signed SSL cert? Did you ask Thunderbird to accept the ssl cert when it popped up the cert warning?

32

Re: FreeBSD 12 clear install

Until the adoption of the certificate does not reach. Thunderbird answers that no account information was found

33

Re: FreeBSD 12 clear install

I was able to get past the altermine error.

First download
https://download.snake.de/distfiles/alt … .a1.tar.gz
and place it in your /usr/ports/pkg folder

then edit the /usr/ports/mail/altermime/Makefile
remove the line

BROKEN =        unfetchable

34

Re: FreeBSD 12 clear install

Did not help!

35

Re: FreeBSD 12 clear install

3m wrote:

Did not help!

What did you try and which step is not help?
Did you try the latest development edition?

BTW, i'm always confused by your short reply text ...

36

Re: FreeBSD 12 clear install

It works! But...
28 08:21:53 test dovecot[866]: stats: Error: conn stats-reader (127.0.0.1:25569): didn't reply with a valid VERSION line: EXPORT    global
Aug 28 08:21:53 test dovecot[866]: stats: Error: conn stats-reader (127.0.0.1:60290): didn't reply with a valid VERSION line: EXPORT    global

37

Re: FreeBSD 12 clear install

Does your Dovecot config file (/usr/local/etc/dovecot/dovecot.conf) has same setting as our sample config file below?
https://bitbucket.org/zhb/iredmail/src/ … #lines-243

38

Re: FreeBSD 12 clear install

zhb-iredmail-90accf168b7c

39

Re: FreeBSD 12 clear install

service stats {
    fifo_listener stats-mail {
        user = vmail
        mode = 0644
    }

    unix_listener stats-writer {
        user = vmail
        group = vmail
        mode = 0660

40

Re: FreeBSD 12 clear install

???