Re: [Exim] SQL POP before SMTP method?

Top Page
Delete this message
Reply to this message
Author: Torsten Mueller
Date:  
To: exim-users@exim.org
Subject: Re: [Exim] SQL POP before SMTP method?
Eric Renfro schrieb:
>
> Here's an added feature I would like to add to my exim setup.
>
> I would like to make an SQL-based POP before SMTP method, allowing users who
> can't SMTP AUTH by other normal means, to be able to login through POP before
> sending email out to anywhere.
>
> I haven't a clue how to start this idea, but I'm guessing it's somehow
> ACL-based in exim4?
>
> I have a table, users, based on this layout, with only the relevant
> information needed for this scheme to work:
>
>   userid  |     last_login
> ----------+---------------------
>  user1    | 2002-10-24 11:15:54
>  user2    | 2002-10-23 09:35:51
>  user3    | 1979-11-03 22:05:58
>  user4    | 2002-10-24 11:47:11
>  user5    | 2002-10-24 11:50:21


Missing the remote IP here, as POP before SMTP uses
hostlist relay_from_hosts
Which should be in your case the IP of the POP client.

Torsten