[perl #126923] [BUG] printf %d pads with spaces instead of zeros with precision specifier

2017-07-10 Thread Jan-Olof Hendig via RT
On Tue, 15 Dec 2015 06:14:03 -0800, b...@abrij.org wrote: > > > When the %d directive is given a decimal precision it should pad with > zeroes, not spaces. > > $ perl6 -e 'printf("%3.3d", 16)' > 16 > $ perl -e 'printf("%3.3d\n", 16)' > 016 This was fixed with https://github.com/rakudo/rakudo/

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread ToddAndMargo
On 07/10/2017 12:31 PM, Timo Paulssen wrote: Did you read my very long post on the Net::SMTP issue you opened? I will shortly when I get some programming time. It arrived in my eMail and I have it bolded and tagged red. Thank you! -- Yesterday it worked. Today it i

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread Timo Paulssen
Did you read my very long post on the Net::SMTP issue you opened?

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread Brandon Allbery
On Mon, Jul 10, 2017 at 3:17 PM, ToddAndMargo wrote: > On 07/10/2017 06:48 AM, Timo Paulssen wrote: > >> It seems like you don't know the internals of the SMTP protocol. In that >> case, it's a bad idea to try to use the raw mode, when the simple mode >> is much simpler to handle. >> > I need to

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread ToddAndMargo
On 07/10/2017 06:48 AM, Timo Paulssen wrote: It seems like you don't know the internals of the SMTP protocol. In that case, it's a bad idea to try to use the raw mode, when the simple mode is much simpler to handle. In the list of simple mode methods you can find the method "auth" that will try

Re: [retupmoca/P6-Net-SMTP] RFE: attachments (#14)

2017-07-10 Thread Timo Paulssen
On 10/07/17 06:48, ToddAndMargo wrote: > Hi Timo, > > I don't understand. How do you sent this to Net::SMTP? > Where is the SMTP server's address and user name? In > Net::SMTP by chance? > > I have successfully used Net::SMTP before, but I don't get what you > are saying. > > I am confused. :'(

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread Timo Paulssen
It seems like you don't know the internals of the SMTP protocol. In that case, it's a bad idea to try to use the raw mode, when the simple mode is much simpler to handle. In the list of simple mode methods you can find the method "auth" that will try the authentication methods the server accepts i

[perl6/specs] 6f12b3: Move doc

2017-07-10 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 6f12b30660e8e47afcd76152d18f142a764b3ac2 https://github.com/perl6/specs/commit/6f12b30660e8e47afcd76152d18f142a764b3ac2 Author: Zoffix Znet Date: 2017-07-09 (Sun, 09 Jul 2017) Changed paths: M v6d.po

[perl6/specs] c2d66a: Try to fix pod

2017-07-10 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: c2d66a5cb73506230130ba4d99374bfafe8942b5 https://github.com/perl6/specs/commit/c2d66a5cb73506230130ba4d99374bfafe8942b5 Author: Zoffix Znet Date: 2017-07-09 (Sun, 09 Jul 2017) Changed paths: M v6d.po

Re: [perl #131707] [BUG] Private Methods/Attributes in roles do not work as expected

2017-07-10 Thread Martin Barth via RT
> cat A.pm class A { ... } role R { has A $!private; method r { self!s; } method !s { $!private!s if $!private; # line 12 say $.b; } method !private-method { say "priv method"; } method public-method { self!p

[perl #131721] [PERF][REGRESSION] calling non-existing methods with try() is very slow

2017-07-10 Thread via RT
# New Ticket Created by Shoichi Kaji # Please include the string: [perl #131721] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131721 > I've noticed that with recent rakudo (2017.06-172-gc76d9324a), it takes a lot of time to