On Tue, Apr 13, 2010 at 10:36 PM, Andreas Schulze andreas.schulze@datev.de wrote:
Am 13.04.2010 22:23 schrieb Brandon Lamb:
Hi,
In my 1.2 setup I have pop3 running on ip x.x.x.2 and imap on x.x.x.7
In 2.0 how do I say listen x.x.x.2:110 x.x.x.7:143 so that pop3 is not listening on the .7 ip? I tried putting a listen = ip in the listener section but it complained. I cant figure it out and cant seem to find any 2.0 specific documentation, trying to search in the wiki directory of /usr/local/share/doc/dovecot/wiki but so far no help.
I realize I can firewall that off but I dont want to rely on that. Is this no longer possible?
that works for me:
service imap-login { inet_listener imap { address = imap01.t6-isa.de } inet_listener imaps { address = imap01.t6-isa.de } }
service pop3-login { inet_listener pop3 { address = pop01.t6-isa.de } inet_listener pop3s { address = pop01.t6-isa.de } } an in case you like different certs:
protocol imap { ssl = yes ssl_cert =
protocol pop3 { ssl = yes ssl_cert =
-- Andreas Schulze Internetdienste | P532
DATEV eG 90329 Nürnberg | Telefon +49 911 319-0 | Telefax +49 911 319-3196 E-Mail info @datev.de | Internet www.datev.de Sitz: 90429 Nürnberg, Paumgartnerstr. 6-14 | Registergericht Nürnberg, GenReg Nr.70 Vorstand Prof. Dieter Kempf (Vorsitzender) Dipl.-Kfm. Wolfgang Stegmann (stellvertretender Vorsitzender) Dipl.-Kfm. Michael Leistenschneider Jörg Rabe v. Pappenheim Dipl.-Vw. Eckhard Schwarzer Vorsitzender des Aufsichtsrates: Reinhard Verholen
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux)
iJwEAQECAAYFAkvFVFgACgkQGXQ4Obkc43nWJwP9HOZ/A3q6SKIJKQL23we7KwVG hwmxiT6ayhy73s6oE5VKCSwSdNH452FPbQsB+Qg3lEvdmX7MhKDbNIc2N2qEGCPS CmED/q7V6ppQPaPeBw4tdfOMlCJ0EEsmYWFrIyakyQiRcDbLDsK/3D5VnAdLLxCS a5tXfsTxT1ZqZKvPv8w= =yx2R -----END PGP SIGNATURE-----
Ohhhh address, very good thank you!!