in reply to Re^3: Authenticate email
in thread Authenticate email

"The Snippet of code" ?? Is that the code/script I provided or the "Module" Ipower provided?

Authen::SASL? Does that mean I need to tell IPower to install that before I can use my script?

Replies are listed 'Best First'.
Re^5: Authenticate email
by Happy-the-monk (Canon) on Mar 04, 2015 at 18:23 UTC

    "The Snippet of code" ?? Is that the code/script I provided or the "Module" Ipower provided?

    I was referring to the snipped in your post.

    Authen::SASL? Does that mean I need to tell IPower to install that before I can use my script?

    Maybe - that is if that is the kind of authentication you will be using through Net::SMTP.

    Cheers, Sören

    Créateur des bugs mobiles - let loose once, run everywhere.
    (hooked on the Perl Programming language)

      Correct, there is no username and password in the script I was provided. I was guessing that would be in the code I need to add regarding the Net::SMTP module. To clarify, I am not a programmer of any kind and know absolutely nothing about perl. I was given a script and a readme file with instructions. The readme file did not include information on how to work with servers that do not allow unauthenticated relaying. I am ever so grateful for you kind souls attempting to help me.

        I am ever so grateful for you kind souls attempting to help me.

        Attempting is the word. Without the code, what can I try to say?

        You could search your code for the word "auth". If you find that, maybe you are near.

        If you don't find it, you may find a ... = Net::SMTP->new . . . somewhere, and look at what it says on the left hand side of the "=".

        You may remember it from the documentation, where it says $smtp = Net::SMTP->new . . ., so let's assume it does say $smtp .

        You may then add a new line below that one that goes $smtp->auth( "USERNAME", "PASSWORD" ); and replace USERNAME and PASSWORD with the real ones. Check if it does any good.

        If it works the way you expect, worry some about your secrets now residing on the remote webserver and if that means, other people with access to that server can now also use your email server...

        Cheers, Sören

        Créateur des bugs mobiles - let loose once, run everywhere.
        (hooked on the Perl Programming language)