Michael Durket
2012-Aug-14 22:12 UTC
[Dovecot] Listen on multiple ports possible using same protocol?
Is it possible to have multiple Listen directives in a dovecot configuration file for the same protocol? I am running dovecot-1.2.11 and I want to be able to use the "standard port" as well as a test port: protocol imap { listen = *:143 listen = *:10143 ssl_listen = *:993 ssl_listen = *:10993 for example. Or is this more preferably done by pointing dovecot at different configuration files?
Stan Hoeppner
2012-Aug-14 23:56 UTC
[Dovecot] Listen on multiple ports possible using same protocol?
On 8/14/2012 5:12 PM, Michael Durket wrote:> Is it possible to have multiple Listen directives in a dovecot configuration file for the same protocol? I am running dovecot-1.2.11 and I want to be able to use the "standard port" as well as a test port: > > protocol imap { > listen = *:143 > listen = *:10143 > ssl_listen = *:993 > ssl_listen = *:10993 > > > for example. Or is this more preferably done by pointing dovecot at different configuration files?Did you test it? -- Stan
Timo Sirainen
2012-Aug-15 09:28 UTC
[Dovecot] Listen on multiple ports possible using same protocol?
On 15.8.2012, at 1.12, Michael Durket wrote:> Is it possible to have multiple Listen directives in a dovecot configuration file for the same protocol? I am running dovecot-1.2.11 and I want to be able to use the "standard port" as well as a test port: > > protocol imap { > listen = *:143 > listen = *:10143I think this works: listen = *:143, *:10143 I think dovecot-example.conf says something about it.
Benny Pedersen
2012-Aug-18 02:36 UTC
[Dovecot] Listen on multiple ports possible using same protocol?
Den 2012-08-15 00:12, Michael Durket skrev:> for example. Or is this more preferably done by pointing dovecot at > different configuration files?listen = wan-ip:143 listen = 127.0.0.2:143 ssl_listen = wan-ip:993 ssl_listen = 127.0.0.3:993 just examples since it dont understand what you like to test :)