Passing the smoke test any day now...

A plugin for Authen::Simple, Authen::Simple::IMAP lets you use an IMAP or IMAPS server for authentication. Not much to say beyond that, I guess.

I'd love any feedback anyone wanted to give.

--Thanks!
Pileofrogs

Replies are listed 'Best First'.
Re: Announcing Authen::Simple::IMAP
by Anonymous Monk on Mar 19, 2009 at 14:09 UTC

    A few editorial comments:

    • I see funny characters here:
      log => Log::Log4perl->get_logger(’Authen::Simple::PAM’)
    • I suggest changing this:
      In my environment, a password will fail even if it is correct if it contains a slash unless that slash is escaped with a preceeding slash. I replace all slashes with double-slashes in your password to keep this from being a problem. I don't know if this is portable, a good idea or profoundly dangerously insane. If you don't want this to behavior, set this value to false.

      To this:
      In some environments, a password containing a slash will fail unless the slash is escaped. Set escape_slash to true to escape slashes in passwords, or false to leave them unescaped.
    • Two typos:
      "... obvious choice beinga ..."
      "... do a successfull..."

      Thank you!

      I will do what you recommend.