From leprevostfv at gmail.com Mon Apr 2 10:43:59 2012 From: leprevostfv at gmail.com (Felipe Leprevost) Date: Mon, 2 Apr 2012 14:43:59 -0300 Subject: [Curitiba-pm] Fwd: [Job] Vaga Consultor Perl In-Reply-To: References: Message-ID: Repassando: ---------- Forwarded message ---------- From: Alexei Znamensky Tem uma vaga em aberto para Perl (ou Ruby) na IBM. Skill: Conhecimento em Perl ou Ruby para manipula??o de arquivos e aplica??es WEB. Experi?ncia: M?nimo 1 ano Tempo: 8 meses Maiores informa??es entrar em contato com: William Porto e/ou Gustavo da Costa Leonato -- Felipe da Veiga Leprevost Bioinformatics & Computational Biology Laboratory Carlos Chagas Institute - ICC/FIOCRUZ Curitiba - PR - Brazil -------------- next part -------------- An HTML attachment was scrubbed... URL: From gfsilveira at gmail.com Sun Apr 8 15:21:47 2012 From: gfsilveira at gmail.com (Guilherme Ferreira Silveira) Date: Sun, 8 Apr 2012 19:21:47 -0300 Subject: [Curitiba-pm] Enviar e-mail pelo perl. Message-ID: Caros boa noite. Novamente venho a voc?s para solicitar seus conhecimentos. Estou tentando fazer um script para envio de e-mails no Win. Preciso utilizar Win pois os usu?rios n?o est?o familiarizados com Unix. O objetivo do script, que aqui ? mostrado apenas parcialmente, ? ap?s algumas altera??es de arquivo espec?fico realizadas em perl, eu receber em meu e-mail um relat?rio destas altera??es. Mando o c?digo abaixo. #!/Perl64/bin/perl ?w use strict; use warnings; use diagnostics; use Carp; use Net::SMTP; my $alt = "Altera??o realizada"; my $from = "emailfrom\@gmail.com"; my $to = "emailto\@gmail.br"; my $msg = $alt; #my $tolist = $to; #my $cclist = ""; #my $logstr = ""; my $smtp = Net::SMTP->new("smtp.gmail.com", Port=> 25, Timeout => 30, Debug => 1 ); $smtp->auth("DIGEST-MD5", "gfsilveira", "6relays6");# or CRAM-MD5 $smtp->mail($from); $smtp->to($to); $smtp->data($msg); $smtp->datasend("testing the Net::SMTP mail\n"); $smtp->datasend("line 2\n"); $smtp->dataend(); $smtp->quit; exit; O problema ocorre quando eu rodo o script, e aparentemente ele n?o gera a conex?o necess?rio pelo SMTP. A mensagem de erro que recebo ?: Can't call method "auth" on an undefined value at Test_mail.pl. Testei alguns outros c?digos usando Net::SMTP_auth, ou MIME::Lite::TT::HTML, para html, mas a mensagem ? a mesma.; Agrade?o caso algu?m possa me dar alguma ajuda. Guilherme. -- Guilherme Ferreira Silveira, BMD, MSc. PhD's Student Bioscience and Biotechnology Carlos Chagas Institute/FIOCRUZ Rua Prof Algacyr Munhoz M?der 3775 81350-010, Curitiba, Paran?, Brazil. tel: +55 41 21043330 fax: +55 41 21043267 e-mail: gfsilveira at gmail.com skype: g.fsilveira \w/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From gfsilveira at gmail.com Sun Apr 8 15:50:33 2012 From: gfsilveira at gmail.com (Guilherme Ferreira Silveira) Date: Sun, 8 Apr 2012 19:50:33 -0300 Subject: [Curitiba-pm] Enviar e-mail pelo perl. In-Reply-To: References: Message-ID: N?o 2012/4/8 Renato Santos > Vc n?o usa essa senha n?o n?? > Em 08/04/2012 19:21, "Guilherme Ferreira Silveira" > escreveu: > >> Caros boa noite. >> >> Novamente venho a voc?s para solicitar seus conhecimentos. >> >> Estou tentando fazer um script para envio de e-mails no Win. Preciso >> utilizar Win pois os usu?rios n?o est?o familiarizados com Unix. O objetivo >> do script, que aqui ? mostrado apenas parcialmente, ? ap?s algumas >> altera??es de arquivo espec?fico realizadas em perl, eu receber em meu >> e-mail um relat?rio destas altera??es. >> >> Mando o c?digo abaixo. >> >> #!/Perl64/bin/perl ?w >> use strict; >> use warnings; >> use diagnostics; >> use Carp; >> use Net::SMTP; >> >> my $alt = "Altera??o realizada"; >> my $from = "emailfrom\@gmail.com"; >> my $to = "emailto\@gmail.br"; >> my $msg = $alt; >> #my $tolist = $to; >> #my $cclist = ""; >> #my $logstr = ""; >> >> my $smtp = Net::SMTP->new("smtp.gmail.com", Port=> 25, Timeout => 30, >> Debug => 1 ); >> >> $smtp->auth("DIGEST-MD5", "gfsilveira", "6relays6");# or CRAM-MD5 >> $smtp->mail($from); >> $smtp->to($to); >> $smtp->data($msg); >> $smtp->datasend("testing the Net::SMTP mail\n"); >> $smtp->datasend("line 2\n"); >> $smtp->dataend(); >> $smtp->quit; >> exit; >> >> O problema ocorre quando eu rodo o script, e aparentemente ele n?o gera a >> conex?o necess?rio pelo SMTP. A mensagem de erro que recebo ?: >> >> Can't call method "auth" on an undefined value at Test_mail.pl. >> >> Testei alguns outros c?digos usando Net::SMTP_auth, ou >> MIME::Lite::TT::HTML, para html, mas a mensagem ? a mesma.; >> >> Agrade?o caso algu?m possa me dar alguma ajuda. >> >> Guilherme. >> >> >> -- >> Guilherme Ferreira Silveira, BMD, MSc. >> PhD's Student >> Bioscience and Biotechnology >> Carlos Chagas Institute/FIOCRUZ >> Rua Prof Algacyr Munhoz M?der 3775 >> 81350-010, Curitiba, Paran?, Brazil. >> tel: +55 41 21043330 >> fax: +55 41 21043267 >> e-mail: gfsilveira at gmail.com >> skype: g.fsilveira >> \w/ >> >> >> _______________________________________________ >> Curitiba-pm mailing list >> Curitiba-pm at pm.org >> http://mail.pm.org/mailman/listinfo/curitiba-pm >> >> -- Guilherme Ferreira Silveira, BMD, MSc. PhD's Student Bioscience and Biotechnology Carlos Chagas Institute/FIOCRUZ Rua Prof Algacyr Munhoz M?der 3775 81350-010, Curitiba, Paran?, Brazil. tel: +55 41 21043330 fax: +55 41 21043267 e-mail: gfsilveira at gmail.com skype: g.fsilveira \w/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From renato.cron at gmail.com Sun Apr 8 16:06:27 2012 From: renato.cron at gmail.com (Renato Santos) Date: Sun, 8 Apr 2012 20:06:27 -0300 Subject: [Curitiba-pm] Enviar e-mail pelo perl. In-Reply-To: References: Message-ID: ok, ent?o, acho que pra Gmail vc precisa usar o Net::SMTP::TLS 2012/4/8 Guilherme Ferreira Silveira > N?o > > > 2012/4/8 Renato Santos > >> Vc n?o usa essa senha n?o n?? >> Em 08/04/2012 19:21, "Guilherme Ferreira Silveira" >> escreveu: >> >>> Caros boa noite. >>> >>> Novamente venho a voc?s para solicitar seus conhecimentos. >>> >>> Estou tentando fazer um script para envio de e-mails no Win. Preciso >>> utilizar Win pois os usu?rios n?o est?o familiarizados com Unix. O objetivo >>> do script, que aqui ? mostrado apenas parcialmente, ? ap?s algumas >>> altera??es de arquivo espec?fico realizadas em perl, eu receber em meu >>> e-mail um relat?rio destas altera??es. >>> >>> Mando o c?digo abaixo. >>> >>> #!/Perl64/bin/perl ?w >>> use strict; >>> use warnings; >>> use diagnostics; >>> use Carp; >>> use Net::SMTP; >>> >>> my $alt = "Altera??o realizada"; >>> my $from = "emailfrom\@gmail.com"; >>> my $to = "emailto\@gmail.br"; >>> my $msg = $alt; >>> #my $tolist = $to; >>> #my $cclist = ""; >>> #my $logstr = ""; >>> >>> my $smtp = Net::SMTP->new("smtp.gmail.com", Port=> 25, Timeout => 30, >>> Debug => 1 ); >>> >>> $smtp->auth("DIGEST-MD5", "gfsilveira", "6relays6");# or CRAM-MD5 >>> $smtp->mail($from); >>> $smtp->to($to); >>> $smtp->data($msg); >>> $smtp->datasend("testing the Net::SMTP mail\n"); >>> $smtp->datasend("line 2\n"); >>> $smtp->dataend(); >>> $smtp->quit; >>> exit; >>> >>> O problema ocorre quando eu rodo o script, e aparentemente ele n?o gera >>> a conex?o necess?rio pelo SMTP. A mensagem de erro que recebo ?: >>> >>> Can't call method "auth" on an undefined value at Test_mail.pl. >>> >>> Testei alguns outros c?digos usando Net::SMTP_auth, ou >>> MIME::Lite::TT::HTML, para html, mas a mensagem ? a mesma.; >>> >>> Agrade?o caso algu?m possa me dar alguma ajuda. >>> >>> Guilherme. >>> >>> >>> -- >>> Guilherme Ferreira Silveira, BMD, MSc. >>> PhD's Student >>> Bioscience and Biotechnology >>> Carlos Chagas Institute/FIOCRUZ >>> Rua Prof Algacyr Munhoz M?der 3775 >>> 81350-010, Curitiba, Paran?, Brazil. >>> tel: +55 41 21043330 >>> fax: +55 41 21043267 >>> e-mail: gfsilveira at gmail.com >>> skype: g.fsilveira >>> \w/ >>> >>> >>> _______________________________________________ >>> Curitiba-pm mailing list >>> Curitiba-pm at pm.org >>> http://mail.pm.org/mailman/listinfo/curitiba-pm >>> >>> > > > -- > Guilherme Ferreira Silveira, BMD, MSc. > PhD's Student > Bioscience and Biotechnology > Carlos Chagas Institute/FIOCRUZ > Rua Prof Algacyr Munhoz M?der 3775 > 81350-010, Curitiba, Paran?, Brazil. > tel: +55 41 21043330 > fax: +55 41 21043267 > e-mail: gfsilveira at gmail.com > skype: g.fsilveira > \w/ > > -- Sarav?, Renato CRON Santos http://www.renatocron.com/blog/ @renato_cron -------------- next part -------------- An HTML attachment was scrubbed... URL: From leprevostfv at gmail.com Mon Apr 9 20:02:16 2012 From: leprevostfv at gmail.com (Felipe Leprevost) Date: Tue, 10 Apr 2012 00:02:16 -0300 Subject: [Curitiba-pm] Enviar e-mail pelo perl. In-Reply-To: References: Message-ID: 2012/4/8 Renato Santos > ok, > > ent?o, acho que pra Gmail vc precisa usar o Net::SMTP::TLS > > > 2012/4/8 Guilherme Ferreira Silveira > >> N?o >> >> >> 2012/4/8 Renato Santos >> >>> Vc n?o usa essa senha n?o n?? >>> Em 08/04/2012 19:21, "Guilherme Ferreira Silveira" >>> escreveu: >>> >>>> Caros boa noite. >>>> >>>> Novamente venho a voc?s para solicitar seus conhecimentos. >>>> >>>> Estou tentando fazer um script para envio de e-mails no Win. Preciso >>>> utilizar Win pois os usu?rios n?o est?o familiarizados com Unix. O objetivo >>>> do script, que aqui ? mostrado apenas parcialmente, ? ap?s algumas >>>> altera??es de arquivo espec?fico realizadas em perl, eu receber em meu >>>> e-mail um relat?rio destas altera??es. >>>> >>>> Mando o c?digo abaixo. >>>> >>>> #!/Perl64/bin/perl ?w >>>> use strict; >>>> use warnings; >>>> use diagnostics; >>>> use Carp; >>>> use Net::SMTP; >>>> >>>> my $alt = "Altera??o realizada"; >>>> my $from = "emailfrom\@gmail.com"; >>>> my $to = "emailto\@gmail.br"; >>>> my $msg = $alt; >>>> #my $tolist = $to; >>>> #my $cclist = ""; >>>> #my $logstr = ""; >>>> >>>> my $smtp = Net::SMTP->new("smtp.gmail.com", Port=> 25, Timeout => 30, >>>> Debug => 1 ); >>>> >>>> $smtp->auth("DIGEST-MD5", "gfsilveira", "6relays6");# or CRAM-MD5 >>>> $smtp->mail($from); >>>> $smtp->to($to); >>>> $smtp->data($msg); >>>> $smtp->datasend("testing the Net::SMTP mail\n"); >>>> $smtp->datasend("line 2\n"); >>>> $smtp->dataend(); >>>> $smtp->quit; >>>> exit; >>>> >>>> O problema ocorre quando eu rodo o script, e aparentemente ele n?o gera >>>> a conex?o necess?rio pelo SMTP. A mensagem de erro que recebo ?: >>>> >>>> Can't call method "auth" on an undefined value at Test_mail.pl. >>>> >>>> Testei alguns outros c?digos usando Net::SMTP_auth, ou >>>> MIME::Lite::TT::HTML, para html, mas a mensagem ? a mesma.; >>>> >>>> Agrade?o caso algu?m possa me dar alguma ajuda. >>>> >>>> Guilherme. >>>> >>>> >>>> -- >>>> Guilherme Ferreira Silveira, BMD, MSc. >>>> PhD's Student >>>> Bioscience and Biotechnology >>>> Carlos Chagas Institute/FIOCRUZ >>>> Rua Prof Algacyr Munhoz M?der 3775 >>>> 81350-010, Curitiba, Paran?, Brazil. >>>> tel: +55 41 21043330 >>>> fax: +55 41 21043267 >>>> e-mail: gfsilveira at gmail.com >>>> skype: g.fsilveira >>>> \w/ >>>> >>>> >>>> _______________________________________________ >>>> Curitiba-pm mailing list >>>> Curitiba-pm at pm.org >>>> http://mail.pm.org/mailman/listinfo/curitiba-pm >>>> >>>> >> >> >> -- >> Guilherme Ferreira Silveira, BMD, MSc. >> PhD's Student >> Bioscience and Biotechnology >> Carlos Chagas Institute/FIOCRUZ >> Rua Prof Algacyr Munhoz M?der 3775 >> 81350-010, Curitiba, Paran?, Brazil. >> tel: +55 41 21043330 >> fax: +55 41 21043267 >> e-mail: gfsilveira at gmail.com >> skype: g.fsilveira >> \w/ >> >> > > > -- > Sarav?, > Renato CRON Santos > http://www.renatocron.com/blog/ > @renato_cron > > > > _______________________________________________ > Curitiba-pm mailing list > Curitiba-pm at pm.org > http://mail.pm.org/mailman/listinfo/curitiba-pm > > Guilherme, eu e o Newton a uns meses atr?s andamos investigando uma forma de enviar emails atrav?s do Gmail. N?s acabamos utilizando o Net::SMTP::TLS (https://metacpan.org/module/Net::SMTP::TLS) como o cron falou. A configura??o dele ? bem simples, tente utiliz?-lo, qualquer coisa ? s? dar um grito ae. abra?os. -- Felipe da Veiga Leprevost Bioinformatics & Computational Biology Laboratory Carlos Chagas Institute - ICC/FIOCRUZ Curitiba - PR - Brazil -------------- next part -------------- An HTML attachment was scrubbed... URL: From breno at rio.pm.org Mon Apr 9 22:00:24 2012 From: breno at rio.pm.org (breno) Date: Tue, 10 Apr 2012 02:00:24 -0300 Subject: [Curitiba-pm] Enviar e-mail pelo perl. In-Reply-To: References: Message-ID: Eu gosto do Net::SMTP, mas ele pode ser muito baixo n?vel para algumas pessoas. Hoje costumo sugerir o Email::Sender como alternativa mais robusta. Mais informa??es: https://metacpan.org/module/Email::Sender::Manual::QuickStart https://metacpan.org/module/Email::Sender::Transport::SMTP::TLS []s -b On Tue, Apr 10, 2012 at 12:02 AM, Felipe Leprevost wrote: > > > 2012/4/8 Renato Santos >> >> ok, >> >> ent?o, acho que pra Gmail vc precisa usar o?Net::SMTP::TLS >> >> >> 2012/4/8 Guilherme Ferreira Silveira >>> >>> N?o >>> >>> >>> 2012/4/8 Renato Santos >>>> >>>> Vc n?o usa essa senha n?o n?? >>>> >>>> Em 08/04/2012 19:21, "Guilherme Ferreira Silveira" >>>> escreveu: >>>>> >>>>> Caros boa noite. >>>>> >>>>> Novamente venho a voc?s para solicitar seus conhecimentos. >>>>> >>>>> Estou tentando fazer um script para envio de e-mails no Win. Preciso >>>>> utilizar Win pois os usu?rios n?o est?o familiarizados com Unix. O objetivo >>>>> do script, que aqui ? mostrado apenas parcialmente, ? ap?s algumas >>>>> altera??es de arquivo espec?fico realizadas em perl, eu receber em meu >>>>> e-mail um relat?rio destas altera??es. >>>>> >>>>> Mando o c?digo abaixo. >>>>> >>>>> #!/Perl64/bin/perl ?w >>>>> use strict; >>>>> use warnings; >>>>> use diagnostics; >>>>> use Carp; >>>>> use Net::SMTP; >>>>> >>>>> my $alt = "Altera??o realizada"; >>>>> my $from = "emailfrom\@gmail.com"; >>>>> my $to = "emailto\@gmail.br"; >>>>> my $msg = $alt; >>>>> #my $tolist = $to; >>>>> #my $cclist = ""; >>>>> #my $logstr = ""; >>>>> >>>>> my $smtp = Net::SMTP->new("smtp.gmail.com", Port=> 25, Timeout => 30, >>>>> Debug => 1 ); >>>>> >>>>> $smtp->auth("DIGEST-MD5", "gfsilveira", "6relays6");# or CRAM-MD5 >>>>> $smtp->mail($from); >>>>> $smtp->to($to); >>>>> $smtp->data($msg); >>>>> $smtp->datasend("testing the Net::SMTP mail\n"); >>>>> $smtp->datasend("line 2\n"); >>>>> $smtp->dataend(); >>>>> $smtp->quit; >>>>> exit; >>>>> >>>>> O problema ocorre quando eu rodo o script, e aparentemente ele n?o gera >>>>> a conex?o necess?rio pelo SMTP. A mensagem de erro que recebo ?: >>>>> >>>>> Can't call method "auth" on an undefined value at Test_mail.pl. >>>>> >>>>> Testei alguns outros c?digos usando?Net::SMTP_auth, ou >>>>> MIME::Lite::TT::HTML, para html, mas a mensagem ? a mesma.; >>>>> >>>>> Agrade?o caso algu?m possa me dar alguma ajuda. >>>>> >>>>> Guilherme. >>>>> >>>>> >>>>> -- >>>>> Guilherme Ferreira Silveira, BMD, MSc. >>>>> PhD's Student >>>>> Bioscience and Biotechnology >>>>> Carlos Chagas Institute/FIOCRUZ >>>>> Rua Prof Algacyr Munhoz M?der 3775 >>>>> 81350-010, Curitiba, Paran?, Brazil. >>>>> tel: +55 41 21043330 >>>>> fax: +55 41 21043267 >>>>> e-mail: gfsilveira at gmail.com >>>>> skype: g.fsilveira >>>>> \w/ >>>>> >>>>> >>>>> _______________________________________________ >>>>> Curitiba-pm mailing list >>>>> Curitiba-pm at pm.org >>>>> http://mail.pm.org/mailman/listinfo/curitiba-pm >>>>> >>> >>> >>> >>> -- >>> Guilherme Ferreira Silveira, BMD, MSc. >>> PhD's Student >>> Bioscience and Biotechnology >>> Carlos Chagas Institute/FIOCRUZ >>> Rua Prof Algacyr Munhoz M?der 3775 >>> 81350-010, Curitiba, Paran?, Brazil. >>> tel: +55 41 21043330 >>> fax: +55 41 21043267 >>> e-mail: gfsilveira at gmail.com >>> skype: g.fsilveira >>> \w/ >>> >> >> >> >> -- >> Sarav?, >> Renato CRON?Santos >> http://www.renatocron.com/blog/ >> @renato_cron >> >> >> >> _______________________________________________ >> Curitiba-pm mailing list >> Curitiba-pm at pm.org >> http://mail.pm.org/mailman/listinfo/curitiba-pm >> > > Guilherme, eu e o Newton a uns meses atr?s andamos investigando uma forma de > enviar emails atrav?s do Gmail. N?s acabamos utilizando o Net::SMTP::TLS > (https://metacpan.org/module/Net::SMTP::TLS) como o cron falou. A > configura??o dele ? bem simples, tente utiliz?-lo, qualquer coisa ? s? dar > um grito ae. > > abra?os. > > > -- > Felipe da Veiga Leprevost > Bioinformatics &?Computational?Biology Laboratory > Carlos Chagas Institute?- ICC/FIOCRUZ > Curitiba - PR - Brazil > > > _______________________________________________ > Curitiba-pm mailing list > Curitiba-pm at pm.org > http://mail.pm.org/mailman/listinfo/curitiba-pm > From gfsilveira at gmail.com Tue Apr 10 04:55:27 2012 From: gfsilveira at gmail.com (Guilherme Ferreira Silveira) Date: Tue, 10 Apr 2012 08:55:27 -0300 Subject: [Curitiba-pm] Enviar e-mail pelo perl. In-Reply-To: References: Message-ID: Obrigado a todos. Vou tentar a as sugest?es. Guilherme. 2012/4/10 breno > Eu gosto do Net::SMTP, mas ele pode ser muito baixo n?vel para algumas > pessoas. Hoje costumo sugerir o Email::Sender como alternativa mais > robusta. > > Mais informa??es: > > https://metacpan.org/module/Email::Sender::Manual::QuickStart > https://metacpan.org/module/Email::Sender::Transport::SMTP::TLS > > []s > > -b > > On Tue, Apr 10, 2012 at 12:02 AM, Felipe Leprevost > wrote: > > > > > > 2012/4/8 Renato Santos > >> > >> ok, > >> > >> ent?o, acho que pra Gmail vc precisa usar o Net::SMTP::TLS > >> > >> > >> 2012/4/8 Guilherme Ferreira Silveira > >>> > >>> N?o > >>> > >>> > >>> 2012/4/8 Renato Santos > >>>> > >>>> Vc n?o usa essa senha n?o n?? > >>>> > >>>> Em 08/04/2012 19:21, "Guilherme Ferreira Silveira" > >>>> escreveu: > >>>>> > >>>>> Caros boa noite. > >>>>> > >>>>> Novamente venho a voc?s para solicitar seus conhecimentos. > >>>>> > >>>>> Estou tentando fazer um script para envio de e-mails no Win. Preciso > >>>>> utilizar Win pois os usu?rios n?o est?o familiarizados com Unix. O > objetivo > >>>>> do script, que aqui ? mostrado apenas parcialmente, ? ap?s algumas > >>>>> altera??es de arquivo espec?fico realizadas em perl, eu receber em > meu > >>>>> e-mail um relat?rio destas altera??es. > >>>>> > >>>>> Mando o c?digo abaixo. > >>>>> > >>>>> #!/Perl64/bin/perl ?w > >>>>> use strict; > >>>>> use warnings; > >>>>> use diagnostics; > >>>>> use Carp; > >>>>> use Net::SMTP; > >>>>> > >>>>> my $alt = "Altera??o realizada"; > >>>>> my $from = "emailfrom\@gmail.com"; > >>>>> my $to = "emailto\@gmail.br"; > >>>>> my $msg = $alt; > >>>>> #my $tolist = $to; > >>>>> #my $cclist = ""; > >>>>> #my $logstr = ""; > >>>>> > >>>>> my $smtp = Net::SMTP->new("smtp.gmail.com", Port=> 25, Timeout => > 30, > >>>>> Debug => 1 ); > >>>>> > >>>>> $smtp->auth("DIGEST-MD5", "gfsilveira", "6relays6");# or CRAM-MD5 > >>>>> $smtp->mail($from); > >>>>> $smtp->to($to); > >>>>> $smtp->data($msg); > >>>>> $smtp->datasend("testing the Net::SMTP mail\n"); > >>>>> $smtp->datasend("line 2\n"); > >>>>> $smtp->dataend(); > >>>>> $smtp->quit; > >>>>> exit; > >>>>> > >>>>> O problema ocorre quando eu rodo o script, e aparentemente ele n?o > gera > >>>>> a conex?o necess?rio pelo SMTP. A mensagem de erro que recebo ?: > >>>>> > >>>>> Can't call method "auth" on an undefined value at Test_mail.pl. > >>>>> > >>>>> Testei alguns outros c?digos usando Net::SMTP_auth, ou > >>>>> MIME::Lite::TT::HTML, para html, mas a mensagem ? a mesma.; > >>>>> > >>>>> Agrade?o caso algu?m possa me dar alguma ajuda. > >>>>> > >>>>> Guilherme. > >>>>> > >>>>> > >>>>> -- > >>>>> Guilherme Ferreira Silveira, BMD, MSc. > >>>>> PhD's Student > >>>>> Bioscience and Biotechnology > >>>>> Carlos Chagas Institute/FIOCRUZ > >>>>> Rua Prof Algacyr Munhoz M?der 3775 > >>>>> 81350-010, Curitiba, Paran?, Brazil. > >>>>> tel: +55 41 21043330 > >>>>> fax: +55 41 21043267 > >>>>> e-mail: gfsilveira at gmail.com > >>>>> skype: g.fsilveira > >>>>> \w/ > >>>>> > >>>>> > >>>>> _______________________________________________ > >>>>> Curitiba-pm mailing list > >>>>> Curitiba-pm at pm.org > >>>>> http://mail.pm.org/mailman/listinfo/curitiba-pm > >>>>> > >>> > >>> > >>> > >>> -- > >>> Guilherme Ferreira Silveira, BMD, MSc. > >>> PhD's Student > >>> Bioscience and Biotechnology > >>> Carlos Chagas Institute/FIOCRUZ > >>> Rua Prof Algacyr Munhoz M?der 3775 > >>> 81350-010, Curitiba, Paran?, Brazil. > >>> tel: +55 41 21043330 > >>> fax: +55 41 21043267 > >>> e-mail: gfsilveira at gmail.com > >>> skype: g.fsilveira > >>> \w/ > >>> > >> > >> > >> > >> -- > >> Sarav?, > >> Renato CRON Santos > >> http://www.renatocron.com/blog/ > >> @renato_cron > >> > >> > >> > >> _______________________________________________ > >> Curitiba-pm mailing list > >> Curitiba-pm at pm.org > >> http://mail.pm.org/mailman/listinfo/curitiba-pm > >> > > > > Guilherme, eu e o Newton a uns meses atr?s andamos investigando uma > forma de > > enviar emails atrav?s do Gmail. N?s acabamos utilizando o Net::SMTP::TLS > > (https://metacpan.org/module/Net::SMTP::TLS) como o cron falou. A > > configura??o dele ? bem simples, tente utiliz?-lo, qualquer coisa ? s? > dar > > um grito ae. > > > > abra?os. > > > > > > -- > > Felipe da Veiga Leprevost > > Bioinformatics & Computational Biology Laboratory > > Carlos Chagas Institute - ICC/FIOCRUZ > > Curitiba - PR - Brazil > > > > > > _______________________________________________ > > Curitiba-pm mailing list > > Curitiba-pm at pm.org > > http://mail.pm.org/mailman/listinfo/curitiba-pm > > > _______________________________________________ > Curitiba-pm mailing list > Curitiba-pm at pm.org > http://mail.pm.org/mailman/listinfo/curitiba-pm > -- Guilherme Ferreira Silveira, BMD, MSc. PhD's Student Bioscience and Biotechnology Carlos Chagas Institute/FIOCRUZ Rua Prof Algacyr Munhoz M?der 3775 81350-010, Curitiba, Paran?, Brazil. tel: +55 41 21043330 fax: +55 41 21043267 e-mail: gfsilveira at gmail.com skype: g.fsilveira \w/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From creaktive at gmail.com Sun Apr 15 05:41:27 2012 From: creaktive at gmail.com (Stanislaw Pusep) Date: Sun, 15 Apr 2012 09:41:27 -0300 Subject: [Curitiba-pm] Fwd: [Cascavel-pm] Oportunidade desenvolvedor PERL na Nova Zelandia In-Reply-To: References: Message-ID: ABS() ---------- Forwarded message ---------- From: Bruno L Date: Sun, Apr 15, 2012 at 05:01 Subject: [Cascavel-pm] Oportunidade desenvolvedor PERL na Nova Zelandia To: cascavel-pm at pm.org Ol? mo?ada da cascavel-pm, Estou escrevendo para a lista porque acredito ser o lugar ideal para divulgar uma boa oportunidade. Trabalho para uma empresa na Nova Zelandia chamada Catalyst IT ( catalyst.net.nz). Somos especialistas em FOSS e l?deres em desenvolvimento PERL por aqui. Temos algumas vagas abertas que podem lhe interessar. Segue abaixo a descri??o e instru??es: Catalyst has a long-standing commitment to free and open standards and technologies which has gained us an international reputation for development, integration and support services. We are currently seeking Perl developers to join our Wellington office of approximately 110 staff. Attention all Perl developers! We need people who are confident writing modern Perl in an object-oriented style, to work on applications used by hundreds of thousands of New Zealanders every day. We need someone with: * fluent English * good Perl skills * experience with databases, ideally PostgreSQL * good working knowledge of HTML/CSS * good working knowledge of Javascript (ideally jQuery) * Linux/Debian/Ubuntu knowledge (a plus) * ability to communicate clearly with people who have varied levels of technical understanding * interest/experience in providing training and support to clients Good things to include in your email are: * a CV that includes any academic results * references to any publicly available open-source work, e.g. 'I have contributed 30 patches to the example project, which are available through http://repo.or.cz/w/example.git' * any other examples you can provide of relevant work, e.g. references to any academic research you have had published Catalyst is a growing business and generally on the look-out for talented individuals. Visit http://catalyst.net.nz/company/jobs to find out other roles Catalyst are interested to hire into such as Drupal / PHP roles, Systems Administrators, User Experience Designers / Business Analysts. If you are interested contact us: overseasrecruitment[-at-]catalyst.net.nz Cheers, Bruno _______________________________________________ Cascavel-pm mailing list Cascavel-pm at pm.org http://mail.pm.org/mailman/listinfo/cascavel-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: