rian wrote:
On Wed, 2006-04-05 at 19:10 -0700, Paul Querna wrote:
Either method can work. mod_ssl currently will pick up anything with the protocol "https".

I personally like using
<VirtualHost *:25>
Protocol smtp
</Vh

Rather than each module introducing a slightly different directive for their protocol. (For example SmtpProtocol on, SSLEngine on, etc)

Well hey I like that too but isn't the "Protocol" directive deprecated?
While this is cool:

Listen 6025 smtp

I don't think a protocol specifier should be in a listen directive (or
at least the preferred way to specify a protocol).

Ah, but you are missing the last major piece of the puzzle: Accept Filters.
http://httpd.apache.org/docs/2.2/mod/core.html#acceptfilter

These must be a 1-1 mapping of protocols to listening ports. There isn't any way to push the knowledge of the protocol down to the OS without this mapping.

Reply via email to