Henrique de Moraes Holschuh wrote:
>
> On Sat, 24 Nov 2001, Kevin J. Menard, Jr. wrote:
> > Tuesday, November 06, 2001, 7:44:04 AM, you wrote:
> > MF> If you decide that 1 IP per domain is not acceptable, which
> > MF> anybody who does lots of virtual hosting generally does, then
> > MF> I recommend you apply the sep-heirarchy patch which will
> > MF> allow you to use straight email addresses as account names.
> >
> > This is true, but lmtpd will not. It splits on '@' for Kerberos realms or
> > something.
>
> That is a serious limitation. Does lmtp allow one to send to it 'quoted'
> addresses? something like foo\@virtual.domain.org to skip the kerberos
> realm check?
The part where it check for user existence does the @ split its self
It seems to work when taken out.
change lmtpengine.c
line 936 from
while ( *addr != '@' && *addr != '>') {
to
while ( *addr != '>') {
The kerberos realm seems to be seprate.
It does work.
( I must learn kerberos some day).
--
Simon