http://qs321.pair.com?node_id=182830


in reply to Mail::POP3Client on Unix problem

Escape the @ or use single rather than double quotes around the login name. I suspect you're getting unwanted variable interpolation there. I'd do:

$loginname - 'user@example.com';
__________
He seemed like such a nice guy to his neighbors / Kept to himself and never bothered them with favors
- Jefferson Airplane, "Assassin"

Update: fixed my closing single-quote

Replies are listed 'Best First'.
Re: Re: Mail::POP3Client on Unix problem
by DearHeart (Initiate) on Jul 18, 2002 at 15:02 UTC
    Thank you very much! I have been searching the archives for hours! Should've asked much sooner. Single quotes did the trick.