ankitgoel23 / pleft

Automatically exported from code.google.com/p/pleft
GNU General Public License v3.0
0 stars 0 forks source link

Initiator name/email address pair is constructed wrongly #47

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I am not completely sure about whether this is true, but based on sent email I 
suspect a bug:

What steps will reproduce the problem?
1. Create an appointment. Use a comma in the initiator name. For example: Doe, 
John.
2. Wait for the verification email.

What is the expected output? What do you see instead?
Expected: the email is sent to "Doe, John" <j.doe@example.com>.
Instead: the email is sent to Doe@pleft.com, John@pleft.com and 
j.doe@example.com.

Original issue reported on code.google.com by sander.d...@gmail.com on 29 Jun 2011 at 2:20

GoogleCodeExporter commented 8 years ago
I think the problem is here:
http://code.google.com/p/pleft/source/browse/plapp/__init__.py?spec=svn15de644be
13407b70eb3571c2855b7ffa54a1d3a&r=12fbb9bfd4b2098a986b5f518bb0e21945c994a0#51

Change
              'to': '%s <%s>' % (name, address),
into
              'to': '"%s" <%s>' % (name, address),

This needs testing.

Original comment by sander.d...@gmail.com on 29 Jun 2011 at 2:23

GoogleCodeExporter commented 8 years ago

Original comment by sander.d...@gmail.com on 27 Nov 2011 at 4:04