Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Trailing space after address produces error

Quote Reply
Trailing space after address produces error
Trying to send to an address that is followed by a trailing space elicits a confusing error - and the mail isn't sent.

Trailing spaces should be ignored or stripped.

Quote Reply
Re: Trailing space after address produces error In reply to
Hi,

Oops, we've fixed this up. Thanks! Edit GMail/Compose.pm and add:

s/^\s*|\s*$//g;

right after

next unless $_;

around line 402.

Cheers,

Alex

--
Gossamer Threads Inc.
Quote Reply
Re: Trailing space after address produces error In reply to
Thx!