mailcow / mailcow-dockerized

mailcow: dockerized - 🐮 + 🐋 = 💕
https://mailcow.email
GNU General Public License v3.0
8.75k stars 1.17k forks source link

Dovecot imap-login aborted from 172.22.1.9 #1001

Closed phipag closed 5 years ago

phipag commented 6 years ago

Hello,

after updating to the current master my dovecot logs are spammed with the following lines.

4.2.2018, 13:08:04 | info | managesieve-login: Disconnected (no auth attempts in 0 secs): user=<>, rip=172.22.1.9, lip=172.22.1.13
-- | -- | --
4.2.2018, 13:08:04 | info | imap-login: Aborted login (no auth attempts in 0 secs): user=<>, rip=172.22.1.9, lip=172.22.1.13
4.2.2018, 13:08:04 | info | imap-login: Aborted login (no auth attempts in 0 secs): user=<>, rip=172.22.1.9, lip=172.22.1.13, TLS: Disconnected, TLSv1.2 with cipher DHE-RSA-CAMELLIA256-SHA256 (256/256 bits)
4.2.2018, 13:08:04 | info | lmtp(57): Disconnect from 172.22.1.9: Successful quit
4.2.2018, 13:08:04 | info | lmtp(57): Connect from 172.22.1.9
4.2.2018, 13:07:37 | info | managesieve-login: Disconnected (no auth attempts in 0 secs): user=<>, rip=172.22.1.9, lip=172.22.1.13
4.2.2018, 13:07:37 | info | imap-login: Aborted login (no auth attempts in 0 secs): user=<>, rip=172.22.1.9, lip=172.22.1.13
4.2.2018, 13:07:37 | info | imap-login: Aborted login (no auth attempts in 0 secs): user=<>, rip=172.22.1.9, lip=172.22.1.13, TLS: Disconnected, TLSv1.2 with cipher DHE-RSA-CAMELLIA256-SHA256 (256/256 bits)
4.2.2018, 13:07:37 | info | lmtp(57): Disconnect from 172.22.1.9: Successful quit
4.2.2018, 13:07:37 | info | lmtp(57): Connect from 172.22.1.9

What does that mean exactly? Which container is 172.22.1.9?

MAGICCC commented 6 years ago

Use following command to get all IPs docker inspect -f '{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -aq) Then you can narrow it down

andryyy commented 6 years ago

It’s the watchdog. We should hide it from syslog. :-)

Am 04.02.2018 um 13:26 schrieb Peter notifications@github.com:

Use following command to get all IPs docker inspect -f '{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -aq) Then you can narrow it down

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

phipag commented 6 years ago

Thank you, so this is nothing i have to worry about? :-)

andryyy commented 6 years ago

No, not a problem at all. :-)

phipag commented 6 years ago

Do you still have in mind to hide it from log? Because it is a little bit annoying to read the logs like that :-)

stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

alankessler commented 5 years ago

It would be nice if this got fixed.

RobMeerwijk commented 2 years ago

I agree, it took me quite some time to figure out that these log lines were no issue in the end. I was initially a bit worried by this unrelated issue https://github.com/mailcow/mailcow-dockerized/issues/2159 that suggested that I had a open relay config, which was clearly not the case.

gpz1100 commented 1 year ago

@andryyy

Has any progress been made on this issue?

It appears watchdog is generate multiple log lines every minute in dovecot, obfuscating any meaningful (error) dovecot log entries.

quentingosset commented 7 months ago

Hello everyone, If I understand correctly, there's nothing wrong with my log? it's just watchdog spamming the dovecot every minute, isn't it? image

@andryyy it's still on your roadmap ?

It’s the watchdog. We should hide it from syslog. :-) Am 04.02.2018 um 13:26 schrieb Peter @.***>: Use following command to get all IPs docker inspect -f '{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -aq) Then you can narrow it down — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

Thanks

Ps : for people who need the new command to find the ip dedicated to the container sudo docker container inspect -f '{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(sudo docker ps -aq)