Re: Verizon blocks outgoing port 25, need to specify 587- WHERE in config.ini ?

2009-10-05 Thread M W487
Yes!  Thanks.

On Mon, Oct 5, 2009 at 11:52 AM, David Cantrell  wrote:
> On Sat, Oct 03, 2009 at 12:24:56PM -0400, David Golden wrote:
>
>> You probably want to see the section on "Transport Options":
>>
>> It's not well documented in Net::SMTP, but I suspect you can pass a
>> "Port" option like so ...
>
> Test::Reporter::Transport::Net::SMTP::TLS says:
>  Any transport arguments are passed through to the Net::SMTP::TLS
>  constructer
>
> And Net::SMTP::TLS  says that Port is one of the accepted arguments.
>
> --
> David Cantrell | Godless Liberal Elitist
>
> One person can change the world, but most of the time they shouldn't
>    -- Marge Simpson
>


Re: Verizon blocks outgoing port 25, need to specify 587- WHERE in config.ini ?

2009-10-05 Thread David Cantrell
On Sat, Oct 03, 2009 at 12:24:56PM -0400, David Golden wrote:

> You probably want to see the section on "Transport Options":
> 
> It's not well documented in Net::SMTP, but I suspect you can pass a
> "Port" option like so ...

Test::Reporter::Transport::Net::SMTP::TLS says:
  Any transport arguments are passed through to the Net::SMTP::TLS
  constructer

And Net::SMTP::TLS  says that Port is one of the accepted arguments.

-- 
David Cantrell | Godless Liberal Elitist

One person can change the world, but most of the time they shouldn't
-- Marge Simpson


Re: Verizon blocks outgoing port 25, need to specify 587- WHERE in config.ini ?

2009-10-04 Thread M W487
I put something into the wiki, notice in RecentChanges

CPANConfiguration  (version 7) Sun, 04 Oct 2009 19:20:00
(mw487.yahoo@gmail.com) => "added transport notes including Port
587 for manual setting"

referring to my changes near bottom of

http://wiki.cpantesters.org/wiki/CPANConfiguration&version=7

but I could not decide where in the pod to put such
annotations/comments.  The pod seems terse, especially with respect to
configuration rather than method use. So, I will settle for wiki, and
am hearby bailing out on pod annotation.  I hope your changes to the
repo can serve for the pod update.


On Sat, Oct 3, 2009 at 5:07 PM, David Golden  wrote:
> Annotating and wiki, please.  I'll add something to the repo for the
> next release.
>
> -- David
>
> On Sat, Oct 3, 2009 at 4:34 PM, Michael West  wrote:
>>  transport=Net::SMTP::TLS User j...@example.com Password 12345 Port 587
>>
>> works!
>> Thanks much.  If I annotated the pod, would that help?  Or put something on
>> the wiki?
>>
>> David Golden said the following on 10/3/09 12:24 PM:
>>>
>>> On Sat, Oct 3, 2009 at 11:50 AM, M W487  wrote:
>>>

 but I see nothing about PORT.

>>>
>>> You probably want to see the section on "Transport Options":
>>>
>>> ***
>>> Transport options
>>>
>>> The Test::Reporter 1.39_XX development series added support for
>>> multiple transport modules, e.g.
>>> Test::Reporter::Transport::Net::SMTP::TLS or
>>> Test::Reporter::Transport::HTTPGateway. To use them with
>>> CPAN::Reporter, set the 'transport' config option to the name of the
>>> transport module (without the 'Test::Reporter::Transport' prefix) and
>>> any required arguments, separated by white space. For example:
>>>
>>>   transport=Net::SMTP::TLS User j...@example.com Password 12345
>>>   transport=HTTPGateway http://example.com/cpantesters.cgi MyKey
>>>   transport=File ~/saved-reports-dir
>>>
>>> The transport module may be any Test::Reporter::Transport installed on
>>> your system. As of Test::Reporter 1.39_05, transports included
>>> 'Net::SMTP', 'Net::SMTP::TLS', 'Mail::Send', 'HTTPGateway' and 'File'.
>>>
>>> ***
>>>
>>> It's not well documented in Net::SMTP, but I suspect you can pass a
>>> "Port" option like so:
>>>
>>>  transport=Net::SMTP Port 587
>>>
>>> On the other hand, that's usually a port that requires authentication
>>> and you can't authenticate against the perl.org mail servers.  You'll
>>> need to relay through some other external mail server that you have
>>> permission for.  In that case, you'd want to do this:
>>>
>>>   transport=Net::SMTP::TLS User j...@example.com Password 12345 Port 587
>>>
>>> Or -- you might be able to use Verizon's outbound mail servers as a
>>> smart gateway with smtp_server, if they don't cut you off due to high
>>> mail volume.  That's what I do with my ISP, Speakeasy, as they don't
>>> care if I'm sending thousands of emails a day.
>>>
>>> -- David
>>>
>>>
>>
>>
>


Re: Verizon blocks outgoing port 25, need to specify 587- WHERE in config.ini ?

2009-10-04 Thread Michael West

  transport=Net::SMTP::TLS User j...@example.com Password 12345 Port 587

works! 

Thanks much.  If I annotated the pod, would that help?  Or put something 
on the wiki?


David Golden said the following on 10/3/09 12:24 PM:

On Sat, Oct 3, 2009 at 11:50 AM, M W487  wrote:
  

but I see nothing about PORT.



You probably want to see the section on "Transport Options":

***
Transport options

The Test::Reporter 1.39_XX development series added support for
multiple transport modules, e.g.
Test::Reporter::Transport::Net::SMTP::TLS or
Test::Reporter::Transport::HTTPGateway. To use them with
CPAN::Reporter, set the 'transport' config option to the name of the
transport module (without the 'Test::Reporter::Transport' prefix) and
any required arguments, separated by white space. For example:

   transport=Net::SMTP::TLS User j...@example.com Password 12345
   transport=HTTPGateway http://example.com/cpantesters.cgi MyKey
   transport=File ~/saved-reports-dir

The transport module may be any Test::Reporter::Transport installed on
your system. As of Test::Reporter 1.39_05, transports included
'Net::SMTP', 'Net::SMTP::TLS', 'Mail::Send', 'HTTPGateway' and 'File'.

***

It's not well documented in Net::SMTP, but I suspect you can pass a
"Port" option like so:

  transport=Net::SMTP Port 587

On the other hand, that's usually a port that requires authentication
and you can't authenticate against the perl.org mail servers.  You'll
need to relay through some other external mail server that you have
permission for.  In that case, you'd want to do this:

   transport=Net::SMTP::TLS User j...@example.com Password 12345 Port 587

Or -- you might be able to use Verizon's outbound mail servers as a
smart gateway with smtp_server, if they don't cut you off due to high
mail volume.  That's what I do with my ISP, Speakeasy, as they don't
care if I'm sending thousands of emails a day.

-- David

  




Re: Verizon blocks outgoing port 25, need to specify 587- WHERE in config.ini ?

2009-10-03 Thread David Golden
Annotating and wiki, please.  I'll add something to the repo for the
next release.

-- David

On Sat, Oct 3, 2009 at 4:34 PM, Michael West  wrote:
>  transport=Net::SMTP::TLS User j...@example.com Password 12345 Port 587
>
> works!
> Thanks much.  If I annotated the pod, would that help?  Or put something on
> the wiki?
>
> David Golden said the following on 10/3/09 12:24 PM:
>>
>> On Sat, Oct 3, 2009 at 11:50 AM, M W487  wrote:
>>
>>>
>>> but I see nothing about PORT.
>>>
>>
>> You probably want to see the section on "Transport Options":
>>
>> ***
>> Transport options
>>
>> The Test::Reporter 1.39_XX development series added support for
>> multiple transport modules, e.g.
>> Test::Reporter::Transport::Net::SMTP::TLS or
>> Test::Reporter::Transport::HTTPGateway. To use them with
>> CPAN::Reporter, set the 'transport' config option to the name of the
>> transport module (without the 'Test::Reporter::Transport' prefix) and
>> any required arguments, separated by white space. For example:
>>
>>   transport=Net::SMTP::TLS User j...@example.com Password 12345
>>   transport=HTTPGateway http://example.com/cpantesters.cgi MyKey
>>   transport=File ~/saved-reports-dir
>>
>> The transport module may be any Test::Reporter::Transport installed on
>> your system. As of Test::Reporter 1.39_05, transports included
>> 'Net::SMTP', 'Net::SMTP::TLS', 'Mail::Send', 'HTTPGateway' and 'File'.
>>
>> ***
>>
>> It's not well documented in Net::SMTP, but I suspect you can pass a
>> "Port" option like so:
>>
>>  transport=Net::SMTP Port 587
>>
>> On the other hand, that's usually a port that requires authentication
>> and you can't authenticate against the perl.org mail servers.  You'll
>> need to relay through some other external mail server that you have
>> permission for.  In that case, you'd want to do this:
>>
>>   transport=Net::SMTP::TLS User j...@example.com Password 12345 Port 587
>>
>> Or -- you might be able to use Verizon's outbound mail servers as a
>> smart gateway with smtp_server, if they don't cut you off due to high
>> mail volume.  That's what I do with my ISP, Speakeasy, as they don't
>> care if I'm sending thousands of emails a day.
>>
>> -- David
>>
>>
>
>


Re: Verizon blocks outgoing port 25, need to specify 587- WHERE in config.ini ?

2009-10-03 Thread David Golden
On Sat, Oct 3, 2009 at 11:50 AM, M W487  wrote:
> but I see nothing about PORT.

You probably want to see the section on "Transport Options":

***
Transport options

The Test::Reporter 1.39_XX development series added support for
multiple transport modules, e.g.
Test::Reporter::Transport::Net::SMTP::TLS or
Test::Reporter::Transport::HTTPGateway. To use them with
CPAN::Reporter, set the 'transport' config option to the name of the
transport module (without the 'Test::Reporter::Transport' prefix) and
any required arguments, separated by white space. For example:

   transport=Net::SMTP::TLS User j...@example.com Password 12345
   transport=HTTPGateway http://example.com/cpantesters.cgi MyKey
   transport=File ~/saved-reports-dir

The transport module may be any Test::Reporter::Transport installed on
your system. As of Test::Reporter 1.39_05, transports included
'Net::SMTP', 'Net::SMTP::TLS', 'Mail::Send', 'HTTPGateway' and 'File'.

***

It's not well documented in Net::SMTP, but I suspect you can pass a
"Port" option like so:

  transport=Net::SMTP Port 587

On the other hand, that's usually a port that requires authentication
and you can't authenticate against the perl.org mail servers.  You'll
need to relay through some other external mail server that you have
permission for.  In that case, you'd want to do this:

   transport=Net::SMTP::TLS User j...@example.com Password 12345 Port 587

Or -- you might be able to use Verizon's outbound mail servers as a
smart gateway with smtp_server, if they don't cut you off due to high
mail volume.  That's what I do with my ISP, Speakeasy, as they don't
care if I'm sending thousands of emails a day.

-- David