[Mailman-Users] Re: HTTPD

2022-07-07 Thread Software Info
The permissions are a 755: drwxr-xr-x www mailman cgi-bin 

> On Jul 7, 2022, at 12:31 AM, Stephen J. Turnbull  
> wrote:
> 
> Software Info writes:
> 
>> Just a little update. I just ran
>> # obhttpd -d -vvv -f obhttpd.conf and
>> # slowcgi -d -p /
>> to see if I could get anything that made sense show up on the screen
>> and the first error I saw was:  slowcgi: execve
>> /usr/local/mailman/cgi-bin/: Permission denied
>> This is strange because slowcgi runs as www, obhttpd runs as www and
>> www is the owner of the cgi-bin directory. Not sure what I am missing
>> here.
> 
> What are the permissions on the cgi-bin directory?  Specifically, you
> need "x" on that directory.  I don't know specifically about OpenBSD,
> but on macOS "Big Sur" and on a recent missing "x" means you can't
> search the directory.  In that case open(2) fails with
> 
> [EACCES]   Search permission is denied for a component of
>the path prefix.
> 
> and you'd get a 500 from the httpd.  The other possibility might be
> that the cgi itself is setuid, and its owner and group don't have
> permission to search.  (I don't know if that can actually happen, just
> a WAG to cover all bases I can think of.)
> 

--
Mailman-Users mailing list -- mailman-users@python.org
To unsubscribe send an email to mailman-users-le...@python.org
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/mailman-users@python.org/
https://mail.python.org/archives/list/mailman-users@python.org/


[Mailman-Users] Re: HTTPD

2022-07-05 Thread Software Info
Just a little update. I just ran
# obhttpd -d -vvv -f obhttpd.conf and
# slowcgi -d -p /
to see if I could get anything that made sense show up on the screen
and the first error I saw was:  slowcgi: execve
/usr/local/mailman/cgi-bin/: Permission denied
This is strange because slowcgi runs as www, obhttpd runs as www and
www is the owner of the cgi-bin directory. Not sure what I am missing
here.

On Tue, Jul 5, 2022 at 2:58 PM Software Info  wrote:
>
> Thanks so much for the replies. I actually remembered to change the
> chroot and I don't have https configured. Posting my httpd.conf below.
> I run obhttpd on FreeBSD 13.1 and I used slowcgi as was suggested.
>
> [obhttpd.conf]
> chroot "/"
> logdir "/var/log"
>
> server "mailman.mydomain.net" {
> listen on * port 80
> root "/usr/local/mailman/"
> log access "obhttpd-access.log"
> log error "obhttpd-error.log"
>
> location "/Mailman/*" {
> fastcgi socket "/var/www/run/slowcgi.sock"
> root "/usr/local/mailman/cgi-bin/"
>   }
>
>location "/icons/*" {
>root "/usr/local/mailman/icons/"
>}
>
>location "/pipermail/*" {
>root "/usr/local/mailman/archives/public/"
>}
> }
>
>
> [/etc/rc.conf]
> obhttpd_enable="YES"
> slowcgi_enable="YES"
> slowcgi_flags="-p /"
>
> On Sun, Jul 3, 2022 at 12:11 AM Stephen J. Turnbull
>  wrote:
> >
> > Stephen J. Turnbull writes:
> >
> >  > I hope that helps, if not, more information about your configuration
> >
> > Also check your logs for the httpd and for Mailman.  With a 500, it's
> > likely that Mailman isn't logging much, but it's worth checking.
> > Typically there will be a traceback in the httpd log.
> >
> > Steve
--
Mailman-Users mailing list -- mailman-users@python.org
To unsubscribe send an email to mailman-users-le...@python.org
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/mailman-users@python.org/
https://mail.python.org/archives/list/mailman-users@python.org/


[Mailman-Users] Re: HTTPD

2022-07-05 Thread Software Info
Thanks so much for the replies. I actually remembered to change the
chroot and I don't have https configured. Posting my httpd.conf below.
I run obhttpd on FreeBSD 13.1 and I used slowcgi as was suggested.

[obhttpd.conf]
chroot "/"
logdir "/var/log"

server "mailman.mydomain.net" {
listen on * port 80
root "/usr/local/mailman/"
log access "obhttpd-access.log"
log error "obhttpd-error.log"

location "/Mailman/*" {
fastcgi socket "/var/www/run/slowcgi.sock"
root "/usr/local/mailman/cgi-bin/"
  }

   location "/icons/*" {
   root "/usr/local/mailman/icons/"
   }

   location "/pipermail/*" {
   root "/usr/local/mailman/archives/public/"
   }
}


[/etc/rc.conf]
obhttpd_enable="YES"
slowcgi_enable="YES"
slowcgi_flags="-p /"

On Sun, Jul 3, 2022 at 12:11 AM Stephen J. Turnbull
 wrote:
>
> Stephen J. Turnbull writes:
>
>  > I hope that helps, if not, more information about your configuration
>
> Also check your logs for the httpd and for Mailman.  With a 500, it's
> likely that Mailman isn't logging much, but it's worth checking.
> Typically there will be a traceback in the httpd log.
>
> Steve
--
Mailman-Users mailing list -- mailman-users@python.org
To unsubscribe send an email to mailman-users-le...@python.org
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/mailman-users@python.org/
https://mail.python.org/archives/list/mailman-users@python.org/


[Mailman-Users] HTTPD

2022-07-02 Thread Software Info
HI All,
I have been trying to get the mailman web interface working with OpenBSD’s 
httpd. I found and used the information at 
https://www.quernus.co.uk/2015/09/28/running-mailman-on-openbsd/ 

Strangely, I am still getting error 500. Internal Server Error. Has anyone 
gotten this pair working together? Any help would be appreciated.


--
Mailman-Users mailing list -- mailman-users@python.org
To unsubscribe send an email to mailman-users-le...@python.org
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/mailman-users@python.org/
https://mail.python.org/archives/list/mailman-users@python.org/


[Mailman-Users] exporting emails from my mailing list to a text file ?

2009-10-02 Thread INFO Juan F Ortiz . com

I need to export all the emails from my mailing list to an text file, how can I 
do this ? 

Recently I had problems with my hosting because I have 1950 users and the max. 
qty. of emails per hoy I can send is 400, so when I send an email to the 
mailing list I have problems ( Lunar Pages ).   Please let me know what can I 
do. 

Thanks

Juan Ortiz
i...@juanfortiz.com 
webmas...@alianzafrancesa.org.gt


Here is your mailing list set up.   mailing_l...@alianzafrancesaguatemala.com 

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9


Re: [Mailman-Users] Moving to a new server

2008-09-25 Thread Tecru Info

Thanks for your help! I am new to mailman.
I think the bounce variables might have been the issue?

bounce_score_threshold (was set to .7, I set it to 3) Is that better?

bounce_info_stale_after 30

bounce_you_are_disabled_warnings 0

bounce_you_are_disabled_warnings_interval 5

bounce_unrecognized_goes_to_list_owner Yes

bounce_notify_owner_on_disable No

 bounce_notify_owner_on_removal Yes



--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9


Re: [Mailman-Users] massive unsubscribe

2008-09-23 Thread Tecru Info
Nothing out of the ordindary shows up in the log. The IP/domain name  
is not on any common blacklists...


I am not sure what I am supposed to be checking for in the WIKI, I  
found very little on there about spam other than installing spam  
assasin...


I am not convinced this is a spam issue either but I don't know what  
it could be.


On Sep 23, 2008, at 9:26 AM, Brad Knowles wrote:


Tecru Info wrote:

There have been like 600 unsubscribes at once, some from from  
people we know, all across the board as far as ISP's go, not all  
AOL, or even google or yahoo.

Is there anything else I should check?


Check your logs.  Check to see if you are on any of the common black  
lists.


Check the FAQ Wiki for more information on these subjects.

--
Brad Knowles <[EMAIL PROTECTED]>
LinkedIn Profile: <http://tinyurl.com/y8kpxu>


--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9


Re: [Mailman-Users] massive unsubscribe

2008-09-23 Thread Tecru Info
There have been like 600 unsubscribes at once, some from from people  
we know, all across the board as far as ISP's go, not all AOL, or even  
google or yahoo.


Is there anything else I should check?

On Sep 18, 2008, at 6:51 PM, Stephen J. Turnbull wrote:


Tecru Info writes:


We are having a problem where half the email list is getting
unsubscribed. Has this happened to anyone? The people did not
unsubscribe themselves.


Things to check:

(1) You have been (mis)identified as a spammer, and ISPs are bouncing
   your mail.  This causes the mail you send to those ISPs (any user
   at such an ISP) to bounce, and the users get unsubscribed.

(2) You have a lot of users at an ISP like AOL, which assume that
   you're a spammer until you take steps to prove otherwise.  (But
   these ISPs tend to throw away mail that they don't like rather
   than bounce it, so the symptom would be not getting posts rather
   than getting unsubscribed.)

There's more information about both of these issues, how to check and
how to resolve, in the FAQ.


--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9


[Mailman-Users] problems

2008-09-20 Thread Tecru Info

Hello
I am having issues where many emails are getting unsubscribed at a  
time, even though the people say they have not unsubscribed.


I posted this a few days ago but it never appeared on the list. Is  
this the wrong list to post to?

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9


[Mailman-Users] massive unsubscribe

2008-09-18 Thread Tecru Info
We are having a problem where half the email list is getting  
unsubscribed. Has this happened to anyone? The people did not  
unsubscribe themselves.



--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9


Re: [Mailman-Users] Mailman Postfix and MySQL

2007-03-27 Thread Info
Mark Sapiro schrieb:
> Info wrote:
>> well, i have a problem integrating mailman with postfix. I manage my
>> virtual domains and aliases through mysql and a PHP-Frontend.
>> Mailman is running and i could create the global list "mailman"
>> So far so good, but how can i use the generated aliases with mysql?
> 
> 
> You can use a hash for the Mailman aliases even though you use mysql.
> 
> See <http://www.list.org/mailman-install/node12.html> - in particular,
> subsections 6.1.1 and 6.1.2.
> 

Mark Sapiro schrieb:
 > Info wrote:
 >> well, i have a problem integrating mailman with postfix. I manage my
 >> virtual domains and aliases through mysql and a PHP-Frontend.
 >> Mailman is running and i could create the global list "mailman"
 >> So far so good, but how can i use the generated aliases with mysql?
 >
 >
 > You can use a hash for the Mailman aliases even though you use mysql.
 >
 > See <http://www.list.org/mailman-install/node12.html> - in particular,
 > subsections 6.1.1 and 6.1.2.
 >

Hi Mark,

thank you for your reply. I´ve poked around with the options and now i 
think i´m a step further.
These are the relevant options from main.cf:

alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf, 
hash:/etc/mailman/aliases
broken_sasl_auth_clients = yes
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
debug_peer_level = 7
fallback_transport = virtual
home_mailbox = /home/vmail/
html_directory = no
inet_interfaces = all
local_destination_concurrency_limit = 5
local_destination_recipient_limit = 300
local_recipient_maps = $alias_maps, 
mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf, unix:passwd.byname
mail_owner = postfix
mailbox_command = /usr/bin/maildrop -d "$USER"
mailq_path = /usr/bin/mailq
manpage_directory = /usr/share/man
mydestination = centos.exampledomain.de, localhost.$mydomain, localhost
mydomain = exampledomain.de
myhostname = centos.exampledomain.de
mynetworks = 10.10.1.0/27, 127.0.0.0/8
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases
owner_request_special = no
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.2.10/README_FILES
recipient_delimiter = +
sample_directory = /usr/share/doc/postfix-2.2.10/samples
sendmail_path = /usr/sbin/sendmail
setgid_group = postdrop
smtp_tls_note_starttls_offer = yes
smtp_use_tls = yes
smtpd_enforce_tls = no
smtpd_etrn_restrictions = reject
smtpd_helo_required = yes
smtpd_recipient_restrictions = permit_mynetworks, 
permit_sasl_authenticated, reject_non_fqdn_hostname, 
reject_non_fqdn_sender, reject_non_fqdn_recipient, 
reject_unauth_destination, reject_unauth_pipelining, 
reject_invalid_hostname, reject_rbl_client opm.blitzed.org, 
reject_rbl_client list.dsbl.org, reject_rbl_client bl.spamcop.net, 
reject_rbl_client sbl-xbl.spamhaus.org
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = $myhostname
smtpd_sasl_security_options = noanonymous
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_auth_only = no
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_tls_loglevel = 2
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
smtpd_use_tls = yes
tls_random_source = dev:/dev/urandom
unknown_local_recipient_reject_code = 550
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf, 
hash:/etc/mailman/virtual-mailman
virtual_destination_recipient_limit = 1
virtual_gid_maps = static:1001
virtual_mailbox_base = /home/vmail/
virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_limit = 5120
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_minimum_uid = 1000
virtual_transport = maildrop
virtual_uid_maps = static:1001

and this one from mailman:

DEFAULT_URL_HOST   = "www.exampledomain2.de"
DEFAULT_EMAIL_HOST = "exampledomain2.de"

When i try to send an email i get the error:

Recipient address rejected:User unknown in virtual mailbox table

The domain exampledomain2.de is already in the mysql table
When i add the following line to main.cf

mydestination = centos.exampledomain.de, exampledomain2.de, 
localhost.$mydomain, localhost

the message gets send but the following error is logged:

postfix/trivial-rewrite[18195]: warning: do not list domain 
exampledomain2.de in BOTH mydestination and virtual_mailbox_domains


postfix/virtual[18269]: fatal: open 
/etc/postfix/mysql_virtual_mailbox_maps.cf: Permission denied
Mar 27 20:25:37 centos postfix/master[15551]: warning: process 
/usr/libexec/postfix/virtual pid 18269 exit status 1

now i´m stucked. Can someone give me a hint?
Thank you

Christian
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailm

[Mailman-Users] Mailman Postfix and MySQL

2007-03-25 Thread Info
Hi list,

well, i have a problem integrating mailman with postfix. I manage my
virtual domains and aliases through mysql and a PHP-Frontend.
Mailman is running and i could create the global list "mailman"
So far so good, but how can i use the generated aliases with mysql?

This is the relevant entries in the config file:

DEFAULT_URL_HOST   = "www.mydomain.de"
DEFAULT_EMAIL_HOST = "mydomain.de"

add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

MTA = 'Postfix'
POSTFIX_STYLE_VIRTUAL_DOMAINS = ['mydomain.de']

Through the PHP-Frontend i?ve created the virtual domain mydomain.de
Now when i send a email the mail gets to the mailbox root from another 
domain. This is probably because the mail gets send to the hostname of 
the server server.mydomain.de Here i have an catch all alias which 
points to [EMAIL PROTECTED]
Now i got stuck.

Kind regards,

Christian
--
Mailman-Users mailing list
Mailman-Users@python.org
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/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp


[Mailman-Users] List owner not getting bounce notifications

2006-06-09 Thread KENNEY, William P. (Info. Tech. Services)
Hello,

I am the administrator of our mailman list server and after creating a
new list for a list owner, it was noted that the list owner is not
receiving bounce notifications. I see mail errors as root indicating the
mail recipient is invalid for the delivery URL.

What should I, and/or the list owner do to ensure the owner gets a
bounce notification?

TIA,

Bill

William P. Kenney GSEC
Unix Systems Manager
Eastern Connecticut State University
(860) 465-4688
(860) 465-4675 fax

--
Mailman-Users mailing list
Mailman-Users@python.org
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/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp


[Mailman-Users] lost and confused

2005-05-28 Thread KENNEY, William P. (Info. Tech. Services)
Hello all,

I need some help getting Mailman up and running. I have read the install
docs and have some partial success with a Sendmail configuration last
year (I finally gave up and stayed with MD & Sendmail on an Alpha), but
no joy with postfix currently. I want to use postfix as the MTA and
Mailman as the list server as it ships with the OS, as does Apache 2.0.
My system configuration is as follows:

Intel-based server running RHEL 4.0
kernel-2.6.9-5.0.5.EL
mailman-2.1.5-33.rhel4
postfix-2.1.5-4.2.RHEL4
sendmail-8.13.1-2
httpd-2.0.52-9.ent
python-2.3.4-14.1

So far, Apache works but will need to point to the Mailman pages. This I
have no problem with.

I can send mail from the command line but can't receive mail. I have
read the docs for postfix's main.cf but it doesn't make much sense, so I
need to be pointed in the right direction here.

Any help greatly appreciated,

Bill

--
Mailman-Users mailing list
Mailman-Users@python.org
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/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp


[Mailman-Users] help!!!

2005-01-10 Thread info
Hello there,

I use mailman software and reached myself into a problem:


I sent out one newsletter, and for some reason it sent it out 4 times including 
some BT emails 5 times.

I got emails in the list how can i just get it to send once from one email 
address???

How can i add a reply function so people can unsubscribe


Regards


Gaurav
--
Mailman-Users mailing list
Mailman-Users@python.org
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/


[Mailman-Users] How may I convert Majordomo lists to mailman?

2004-12-22 Thread KENNEY, William P. (Info. Tech. Services)
Hello,

I have finally gotten mailman running on RHES 3.0. I need to move and
convert MD lists from an old Alpha/DU system to my current server. Has
any one done this before? I seem to recall a link in the archives but
can no longer find it.

TIA,

Bill

William P. Kenney
Unix Systems Manager
Eastern Connecticut State University
(860) 465-4688
(860) 465-4675 fax

RAM disk is "not" an installation procedure. 


--
Mailman-Users mailing list
Mailman-Users@python.org
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/


[Mailman-Users] Mailman Help.

2004-09-16 Thread info
Hello,
I have a reseller account and they have pre-installed mailman software.  I enjoy using 
your software and just about got to grips with it.

How would i be able to create something that i can add on my website so people can 
subscribe to the list by adding there email address?

I want something like a simple textbox then a button saying "subscribe" and 
"unsubscribe".  Is this possible at all?  Please let me know.

Regards
Gaurav Malhotra
--
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/


[Mailman-Users] Back-up question

2004-09-05 Thread Info VH
How can I back up and/or transfer the members of my Mailman list?
Thanks,
Chris Knudson
Houston, TX
--
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/


[Mailman-Users] Backup Mailing List

2004-08-12 Thread info
Hi,
I own a mailing list of 8400 members. How do I back up the list in a comma separated 
file?
--
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/


[Mailman-Users] List help please with mailer mailer

2004-07-09 Thread info
I need to know if there is a way to display my entire mail list as text 
(addresses showing). I have a large list but cant see any of the names. 
Please help me out!!!

I want it to look like when you add a mass subscription the list of added 
named shows up.

HELP!
--
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/


[Mailman-Users] Wishlist: weekly digest

2004-04-13 Thread Maria Porres,info
hola Roberto:
soy maria porres de sevilla.¿?te acuerdas de mi¿?
contestame por favor.para saber quien soy y verme visita mi pagina 
web:www.mariaporres.com
--
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/


[Mailman-Users] Problem with news gateway

2004-04-09 Thread info
I've had a look through the archives and other documentation and can't find a solution 
to this.

I've set up the maillist <-> news gateway and it claims to have caught up with the old 
messages, but no messages turn up and it doesn't find new ones. It looks as if I need 
to specify the logon for the news server. There isn't anywhere to do this, though and 
I can't find the configuration files - one posting talks of *.pf config files that 
contain the news set up.

Is there a debug option that can be set? I am setting up the maillist on a linux host 
to which I only have cpanel access. I had hoped to see the config files in my 
directory, but there is no sign of anything - where might they be hiding?
--
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/


[Mailman-Users] Accessing Mailman webpages

2003-08-25 Thread info
Hello,
  I'm hoping somebody might help and I apologize for cross posting.

I have three lists which are run via the Mailman software through my webhost.
One of the lists ( http://64.21.80.14/mailman/listinfo/standardbreds_mi-harness.com ) 
info page.

My browser is IE 5.0 with Cookies enabled, although I've had some other security 
options set for some time. ALL this worked as designed until the recent design change 
in the Mailman webpages.
 After that, although I may enter the entry page, I'm unable to log in. 
The result (as best as I can describe,) is near a 404 page without actually being a 
404 error.

I am able to access my lists administration on another computer with IE 6.0

I"m hoping it's possible to determine what changes were made in the page design which 
prevent my administrational access with IE 5.0, since updating browsers is not a real 
option.
 If I may determine the settings change, I might be able to correct the problem.

Thanks in advance for your assitance.   
 
Best  Don



--
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


[Mailman-Users] Huge Problem

2003-08-07 Thread info
Please help me here.

Some how my mailman list has been automatiacally reset somehow and i have lost all my 
previous entered contacts. How could this be and where have they gone?

Please help me sort this problem out ASAP

Thank you

Regards  

Tahir
--
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


[Mailman-Users] Trouble using Mailman mailing lists

2002-01-14 Thread info



Sir,
 
My Guru's website by the name of GurujiOfGurgaon.com 
is hosted on the iconic server.
 
This is a purely devotional site without any 
commercial interests.
 
This server has given me an option of creating 
mailing lists for the users. The mailing list is powered by 
Mailman.
 
The trouble is that I can't figure out a way to 
create a link in the website, so that the users can directly register in the 
mailing list AT THEIR OWN WILL.
 
Please explain the steps, giving the correct HTML 
code to incorporate in my site, to be able to use this option.
 
Eagerly waiting for your reply.
 
Yours sincerely,
 
Bhanu Pratap Jain


[Mailman-Users] metroradius.net

2001-04-10 Thread info


Hello,
My name is Michael Gearreald and I am contacting you to let you know that
according to our records we currently have you in listed in our online city
guide.   With over a hundred thousand listings around the South
East  it is easy to be hidden among all of the listings.  We are
offering this opportunity to enhance your listing.  
 By adding such features as pictures, descriptions, maps, company logos,
and even IPIX Virtual Tours of you establishment you can maximize your listing's
exposure.  To see a list of our sponsorship positions we have available
please feel free to go to http://www.metroradius.net/pricing/ 
To check your your listing simple go to www.metroradius.net
, if we currently do not have your state we are working hard on adding all 50
states, we apologize.
To see a demonstration go to www.metroradius.net
and select Alabama -- Montgomery -- Tourist & Information -- 50 Miles. I
would like offer you the opportunity to answer any questions you might have and
please feel free to call me directly at (334) 395-7871, or email me directly at [EMAIL PROTECTED]
Sincerely,
Mike Gearreald
Metro Radius, Inc
(334) 395-7871
[EMAIL PROTECTED]
WHY MARKET THROUGH US?
* MetroRadius.net provides accurate
referrals 24 hours a day, 7 days a week.
* MetroRadius.net is the ONLY City Guide
that allows "Radius Searches."
* MetroRadius.net is the ONLY City Guide
that seamlessly integrates IPIX
      Virtual Tours in
your listings.
* MetroRadius.net also increases traffic
to your existing web site by adding
      links to your
listing.
* MetroRadius.net attracts hundreds of
thousands of visitors every month
 
**Due to the number of listings and inaccurate emails our
subscribers provide us, their will be some of you who will receive this email in
error, just please disregard it an If you received this mailing in error, please
simply email [EMAIL PROTECTED] 



[Mailman-Users] Chat Live with a CPA

2001-02-09 Thread info



FREE Chat with a CPA on your tax questions, wondering what 8a on your 1040
means. Our CPAs will answer your questions FREE.  Need a CPA in your area?
Search our 450,000 CPA database by city, state and industry.

http://www.cpadirectory.com/cpadirectory/askacpa/ask_live_chat.cfm"> 
http://www.cpadirectory.com/cpadirectory/askacpa/ask_live_chat.cfm 

Articles and FAQ's on Buying a Business, Estate Taxes, College Aid and
Financial Investments are also on

http://www.cpadirectory.com"> http://www.cpadirectory.com 

If you have received this email in error or wish to be removed from our
list, email [EMAIL PROTECTED] with unsubscribe as the subject.





--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users