Re: [Mailman-Users] Spaces in Email Addresses

2004-08-25 Thread Brad Knowles
At 8:43 PM -0700 2004-08-24, Mark Sapiro wrote:
 Actually, the only mention of spaces by the OP was in the subject
 Spaces in Email Addresses. The text of the post and the example
 therein had nothing to do with spaces, only with length. Thus I
 thought that perhaps the OP was not too familiar with English and
 really meant characters or number of characters rather than
 spaces.
	You're probably correct.  However, it was my focus on the subject 
line which I think lead us down the RFC 822/2822 rathole.

Sigh
--
Brad Knowles, [EMAIL PROTECTED]
Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety.
-- Benjamin Franklin (1706-1790), reply of the Pennsylvania
Assembly to the Governor, November 11, 1755
  SAGE member since 1995.  See http://www.sage.org/ for more info.
--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/


Re: [Mailman-Users] Spaces in Email Addresses

2004-08-24 Thread Ian Eiloart

--On Monday, August 23, 2004 10:03 pm +0200 Brad Knowles 
[EMAIL PROTECTED] wrote:

At 10:14 AM -0400 2004-08-20, [EMAIL PROTECTED] wrote:
 I have and address that is too long.  How do I get my address book to
 take it.
	Address book?  There is no address book in Mailman.

Moreover, space
characters are not allowed in e-mail addresses.
Huh? there were no spaces in the email address mentioned.
	Just what program are you thinking of here?

--
Ian Eiloart
Servers Team
Sussex University ITS
--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/


Re: [Mailman-Users] Spaces in Email Addresses

2004-08-23 Thread Brad Knowles
At 10:14 AM -0400 2004-08-20, [EMAIL PROTECTED] wrote:
 I have and address that is too long.  How do I get my address book to take
 it.
	Address book?  There is no address book in Mailman.  Moreover, 
space characters are not allowed in e-mail addresses.

Just what program are you thinking of here?
--
Brad Knowles, [EMAIL PROTECTED]
Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety.
-- Benjamin Franklin (1706-1790), reply of the Pennsylvania
Assembly to the Governor, November 11, 1755
  SAGE member since 1995.  See http://www.sage.org/ for more info.
--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/


Re: [Mailman-Users] Spaces in Email Addresses

2004-08-23 Thread John Price
On Mon, Aug 23, 2004 at 10:03:09PM +0200, Brad Knowles wrote:
 Moreover, 
 space characters are not allowed in e-mail addresses.

Actually, according to RFC822 (section 3.4.1), spaces are
allowed in email addresses:

Note: In particular, quoting is NOT permitted within
atoms. For example when the local-part of an addr-spec
must contain a special character, a quoted string must be
used.  Therefore, a specification such as:
   
Full\ [EMAIL PROTECTED]

is not legal and must be specified as:

Full Name@Domain

Moreover, I've encounted several bone-headed sys admins
that are assigning email addresses that are of this format.

Of course, when I complained to them that they are idiots
for choosing such email addresses, they pointed me to
RFC822. I still think they are idiots...

Later,
John

-- 
No one is listening until you make a mistake.

Have a great day and don't forget to laugh!

http://www.gcfl.net (The Good, Clean Funnies List): Good,
clean daily funnies you can safely tell your mom!
--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/


Re: [Mailman-Users] Spaces in Email Addresses

2003-12-11 Thread frank

I had a similar problem just last week where I had an address with 2 @'s
in it. Actually it was to addresses concatenated but whenever Mailman
displayed the addy it was truncated at the second @.

My final solution was to dump the config:
# bin/config_list -o outfile listname

then dump the userlist:
# bin/list_members listname  outfile2

Here you should munge up outfile2 so it's the proper format for
re-insertion later.

destroy the list (leaving archives in tact):
# bin/rmlist listname

recreate the list (the user and password here mean little because of the
next step):
# bin/newlist listname [EMAIL PROTECTED] 

write your old config over it:
# bin/config_list -i outfile listname

resubscribe your members silently:
# bin/add_members -r outfile2 -w n -a n


Of course you'll have to deal with your digest vs. regular subscribers on
your own.  Most of my lists are either announce-only or low-traffic so all
my members are regular.

Hope this helps! (And I hope there's a better way than all that, but it
works in a pinch)
-Frank


On Thu, 11 Dec 2003, Jonathan Garton wrote:

# I have a problem with spaces in my lists email names.  Awhile back I mass
# subscribed a list of email and real names that was exported from another
# list manager program.  The format of export was [EMAIL PROTECTED] realname.
# It added these entries to Mailman with the space and realname as the
# email address. However, from the
# admin pages, I can't unsubscribe these names, as apparently Mailman
# doesn't see them as being subscribed.
#
# I have tried entering the email only, and the email and name in quotes,
# and both return errors from Mailman saying I can't unsubscribe
# nonmemebers.
#
# Is there another way I can dump these accounts?
#
# Thanks.


--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Spaces in Email Addresses

2003-12-11 Thread Jon Carnes
On Thu, 2003-12-11 at 11:42, Jonathan Garton wrote:
 I have a problem with spaces in my lists email names.  Awhile back I mass 
 subscribed a list of email and real names that was exported from another 
 list manager program.  The format of export was [EMAIL PROTECTED] realname.
 It added these entries to Mailman with the space and realname as the 
 email address. However, from the 
 admin pages, I can't unsubscribe these names, as apparently Mailman 
 doesn't see them as being subscribed.  
 
 I have tried entering the email only, and the email and name in quotes, 
 and both return errors from Mailman saying I can't unsubscribe 
 nonmemebers.  
 
 Is there another way I can dump these accounts?
 
 Thanks. 

Read the FAQ...
  Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py

I think the easiest way to do this is to use a hex editor and simply
insert a valid character where the spaces are.  Then you can treat them
as ordinary email addresses.  Note: the address may appear in the
database in multiple places.

Good Luck - Jon Carnes


--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org