I am trying to get local mail working. On 10.4 I used qpopper and it
looks like I need that on 10.5 as well.
I downloaded 4.0.9 to run on 10.5.2, because 4.0.5 won't work. However,
I am at a loss as to what I have to do to get this to work on 10.5. It
isn't obvious, and the mac instructions, such as they are, seem to be
sadly out of date.
Under 10.4.11, I had a pop3 file in xinetd.d, but that won't fly on
10.5. I think I have to use launchd, but I am clueless on how to set
that up. The man pages, I am sure, are quite clear if you already know
what you are doing.
Oh, if there is another way than qpopper to do this, please tell me.

Signature
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]
Claude V. Lucas - 27 Mar 2008 04:45 GMT
>I am trying to get local mail working. On 10.4 I used qpopper and it
>looks like I need that on 10.5 as well.
[quoted text clipped - 10 lines]
>
>Oh, if there is another way than qpopper to do this, please tell me.
I went thru the same ordeal and wound up switching to dovecot.
loaded it via darwinports/macports...
http://dovecot.darwinports.com/
Claude V. Lucas - 27 Mar 2008 04:46 GMT
>>I am trying to get local mail working. On 10.4 I used qpopper and it
>>looks like I need that on 10.5 as well.
[quoted text clipped - 16 lines]
>
>http://dovecot.darwinports.com/
One "gotcha" is that whenever it updates it writes a launchd
start file that won't start it. One has to edit it and enable
it to load at system start.
Robert Peirce - 27 Mar 2008 15:03 GMT
> I went thru the same ordeal and wound up switching to dovecot.
>
> loaded it via darwinports/macports...
>
> http://dovecot.darwinports.com/
Thanks. I'll give that a try if I come up empty on qpopper. I wasn't
aware there was another popper out there.

Signature
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]
Tom Stiller - 27 Mar 2008 12:21 GMT
> I am trying to get local mail working. On 10.4 I used qpopper and it
> looks like I need that on 10.5 as well.
[quoted text clipped - 10 lines]
>
> Oh, if there is another way than qpopper to do this, please tell me.
I constructed the following launchd plist file in /Library/LaunchDaemons:
---------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Disabled</key>
<false/>
<key>Label</key>
<string>com.tom.pop3</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/sbin/popper</string>
<string>-s</string>
</array>
<key>Sockets</key>
<dict>
<key>Listeners</key>
<dict>
<key>SockServiceName</key>
<string>pop3</string>
</dict>
</dict>
<key>inetdCompatibility</key>
<dict>
<key>Wait</key>
<false/>
</dict>
</dict>
</plist>
---------------------------------
Note: the second and third lines should be one (no wrap).

Signature
Tom Stiller
PGP fingerprint = 5108 DDB2 9761 EDE5 E7E3 7BDA 71ED 6496 99C0 C7CF
Robert Peirce - 27 Mar 2008 15:02 GMT
> > I am trying to get local mail working. On 10.4 I used qpopper and it
> > looks like I need that on 10.5 as well.
[quoted text clipped - 12 lines]
>
> I constructed the following launchd plist file in /Library/LaunchDaemons:
Thanks so much, Tom. I can't wait to give it a try.

Signature
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]