Re: [courier-users] Backtick-Problems

2017-03-30 Thread lists
Am 30.03.2017 um 13:47 schrieb li...@datenritter.de:
> Could there be anything wrong with my maildrops environment?

I just figured, the user maildrop is beeing executed as, has no shell...

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Backtick-Problems | was: Can courier sort mail for one user into multiple subfolders for imap

2017-03-30 Thread lists
Am 30.03.2017 um 13:00 schrieb Sam Varshavchik:
> See above. A Perl script can validate and do a lot more things, all without  
> shelling out to external commands.

Convincing.

Still, to run that script I either need xfilter (which doesn't look like
the right choice to me here) or backtick-commands, which don't seem to
work for some strange reason. (Returncode for a simple echo-line is 1.)

Could there be anything wrong with my maildrops environment?



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Can courier sort mail for one user into multiple subfolders for imap

2017-03-30 Thread lists
Am 30.03.2017 um 02:46 schrieb Sam Varshavchik:
>>  ### BUG: This leaves LPART and DPART empty. :( ###
>> LPART=`echo $MATCH1 | sed "s/\./_/g"`
> 
> If someone were to send an email with a carefully crafted header that reads:  
> "X-BeenThere: ; rm -rf $HOME" you'll have a lot of cleanup to do.

Ouch. I had this bad feeling all the time... Fixed it. Thank you.


Still, at the moment, there should be nothing to worry about, as even:

BLABLA=`echo hallo >> /tmp/test.txt`

doesn't have any effect. (I.e. no file "test.txt" appears in /tmp.)

Filling variables with backtick-commands doesn't seem to work in my
setup. They are empty afterwards, while the very exact statements work
on the command line.


> Maybe scrap the whole thing. Use backticks to feed the email to a Perl  
> script that safely parses headers.

Okay... the beforementioned problems left aside, what is the advantage?
It's all about a simple regex. IMHO, the beauty of all solutions
discussed here is that they use maildropfiler and nothing else.


> At the very least use an additional =~ operator to verify that matched  
> pattern is sane:
> 
> LOCALPART=$MATCH1
> 
> if ($LOCALPART =~ /^[A-Za-z0-9\.\-]+$/)

"At the very least"? Does an external perl script have any security
advantage over this?

d.

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Can courier sort mail for one user into multiple subfolders for imap

2017-03-29 Thread lists
Am 02.09.2016 um 11:01 schrieb Alessandro Vesely:
>> If you would like to sort mails from this mailing list into defined
>> folder, then use List-Id header as selection criterium:
>>
>> if (/^List-Id:.*courier-users.lists.sourceforge.net/)
>>  to "$HOME/Maildir/$FOLDER/"
>>
>> (use desired folder name instead on $FOLDER, I use - for this list -
>> .Software.Courier.courier-users).
> 
> An obvious generalization, to avoid editing $HOME/.mailfilter on every new 
> subscription:
> 
> if (/^List-ID:[^<]*<([-_A-Za-z0-9]*)/)
> {
> DEST=`sed -nr 's/^INBOX(\\.'"$MATCH1"')$/\\1/ip' 
> ./Maildir/courierimapsubscribed`
> if ("$DEST")
> {
> `test -d "./Maildir/$DEST"`
> if ($RETURNCODE == 0)
> to "./Maildir/$DEST";
> }
> }
> 

Below is how I did it. Unfortunately the script stopped working a few
months ago writing hundreds of mails to (mbox?-)files with useful names
like ".@".

My debug version with some extra logging needs more input, so I'll send
it to this list... ["Yo dawg, I heard you like mail filters..."]

Anyway, it's meant to make everything maintenance free. When the first
mail from a list you subscribed to is received, a maildir
".listname@some_domain_tld" is created and added to courierimapsubscribed.


# Check X-BeenThere which every good list server sets.
# List-ID is okay, too.
if ( /^X-BeenThere:\s+(.*)@(.*)/ )
{
# Pick local part and domain part, replace the dots with
# underscores.
### BUG: This leaves LPART and DPART empty. :( ###
LPART=`echo $MATCH1 | sed "s/\./_/g"`
DPART=`echo $MATCH2 | sed "s/\./_/g"`

PREFIX=""
FOLDER=".$LPART@$DPART"

# I want subfolders for organizations with more than one list:
if ( /^X-BeenThere:.*specialorg.*/ )
{
PREFIX=".specialorg"
FOLDER=".$LPART"
}

NEWDIR=$HOME/Maildir/$PREFIX$FOLDER

# create the maildir if it doesn't exist:
`test -d "$NEWDIR"`
if( $RETURNCODE == 1 )
{
`maildirmake $NEWDIR`
`echo "INBOX$PREFIX$FOLDER" \
>> $HOME/Maildir/courierimapsubscribed`
}

to $NEWDIR
}



Maybe additional quotation marks are required around "$MATCH[1|2]"?

d.

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] maildrop autoreplies: sendmail: Unable to submit message

2006-12-23 Thread lopez . on . the . lists
Hello, 

I am having a problem with autoreplies sent by the mailbot, as set up by the 
sqwebmail interface: they used to work without problems, now they don't 
anymore. The only message I can see in the maillog is: 

sendmail: Unable to submit message 

mailer.conf and courierd-prefsfile are setup according to manual. they use 
the binary /usr/local/bin/sendmail; when I try to send a message using the 
command line (as courier user and as root) it works. 

I am using courier 0.52 on FreeBSD 6.1.
There is some problem with the 0.53 port on FreeBSD (had no time yet to 
figure out wether it is my setup or a problem worth reporting) which is why 
I have not yet upgraded. 

Any hint on what's possibly going wrong or on how and where to increase log 
verbosity concerning this maildrop/autoreply/mailbot/sendmail issue would be 
very appreciated - as I can't figure out yet what stopped working. 

The only thing that I recently changed is I set BOFHSUPPRESSBACKSCATTER to 
none because I was experiencing complete blockage of mail reception (almost 
all messages were refused with a 456 Mailbox temporarily unavailable) and 
found out that it had somehow to do with this option. 

Thank You very much in advance and happy xmas time; 

Regards,
Lorenzo

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


AW: [courier-users] other mailserver detect my mails as spam

2006-03-19 Thread lists . gl
 In the modern email world you should always use the relay server of your
 email provider. 
 
 web.de does not publish SPF records, but there might be other esoteric
 techniques user by receiver mta to determine if the sending mta is
 authorized for that domain.

 
 Why not configure the official mail relay for web.de in you MUA?


Ok, I'll configure courier to use web.de-smtp to send theese mails. That
should be the same?

But:
For example at web.de it is possible to send mails with other
From-Adresses. And like I wrote Mails trough the relay-server of a 3rd
provider (which accepts all from-Addresses) are never detected as spam.
How do they solve this Problem.

If I want to let other users to use my relayserver which have different
Addresses; I can't configure my courier-mta for every From-Address
separatly.

thanks 

Guido


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Re: Thunderbird - courier-IMAP interaction problems

2005-04-06 Thread Lists Soderlund.org
Bill Taroli wrote:

Peter Ford wrote:
It's not the standard MAXPERIP problem - MAXDAEMONS=4000 and 
MAXPERIP=100, and have done for a long time.
I only have about 10 users total, and only the guys connecting by ADSL 
get any trouble. Their T-bird settings all say 5 (as usual), but still 
the Sent folder is causing problems.
Thunderbird still seems to be the least bad client, but I'm looking 
around for options (especially for Windoze)

using those values for TEN users? wow... But I've been running courier 
versions back into the early 40's and never have had another speck of 
trouble with Thunderbird (back to 0.7) since increasing the MAXPERIP 
(mine's at 50). I support about a dozen users on my system, and I've set 
up one for a jewelry school in SF the same way (with about 20 users)... 
nary a problem there either.

Bill
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
We are experiencing the exact same problem. To the letter. I just read 
the whole thread.

If anyone gets any closer to a solution, please let us know.
Regards,
N

---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Re: Thunderbird - courier-IMAP interaction problems

2005-04-06 Thread Lists Soderlund.org
Sam Varshavchik wrote:
Peter Ford writes:
The problem is that half the company is on another site and connects 
through their ADSL router which masquerades the IP address. 
MAXDAEMONS=4000 is a bit over the top, I admit, but MAXPERIP needs to 
be big enough to potentially let the whole company come in on one IP - 
we might have a company meeting there...

Troels' post, and the link within to Mozilla's bugzilla, suggests 
there is a known problem with IMAP servers timing the connection out 
in under 29 minutes, which T-bird doesn't like. If there's an easy 
config to 

The problem is that ADSL router.  It's broken.
change the timeout in Courier-IMAP then I might use that, otherwise 
I'll recommend waiting for a new release.

Courier does not timeout sessions in less then 30 minutes.  Courier 
users the standard 30 minute timeout.

Your problem is a common one involving broken routers that break 
connections if they don't see any activity on the connection for a 
couple of minutes.  It is normal for IMAP sessions to go 15-20 minutes 
without any activity.  A broken router then convinces itself that the 
connection no longer exists, and breaks it.

Im between two Borderware firewalls myself. But another thing then: what 
is the option about that one can set in Thunderbird which is called Use 
IDLE command if the server supports it?

DOES courier support it, and could that be a problemsolver aswell?
N

---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Re: Thunderbird - courier-IMAP interaction problems

2005-04-06 Thread Lists Soderlund.org
Sam Varshavchik wrote:
Lists Soderlund.org writes:
Im between two Borderware firewalls myself. But another thing then: 
what is the option about that one can set in Thunderbird which is 
called Use IDLE command if the server supports it?

DOES courier support it,

Yes.
and could that be a problemsolver aswell?

No.

Bummer. One last then, then Ill go my merry way: should'nt the fact that 
all the clients issue a check for new messages every two minutes make 
the connection keep its live state?

N

---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Frequent disconnects

2005-03-02 Thread Lists Soderlund.org
 -f $SENDER, with the
# message piped on standard input.  $SENDER will be the return address
# of the message, which is set by the authentication module.
#
# DO NOT MODIFY SENDMAIL, below, unless you know what you're doing.
#
SENDMAIL=/usr/sbin/sendmail
##NAME: HEADERFROM:0
#
# For administrative and oversight purposes, the return address, $SENDER
# will also be saved in the X-IMAP-Sender mail header.  This header gets
# added to the sent E-mail (but it doesn't get saved in the copy of the
# message that's saved in the folder)
#
# WARNING - By enabling OUTBOX above, *every* IMAP mail client will receive
# the magic OUTBOX treatment.  Therefore advance LARTing is in order for
# _all_ of your lusers, until every one of them is aware of this.
Otherwise if
# OUTBOX is left at its default setting - a folder name that might be used
# accidentally - some people may be in for a rude surprise.  You can
redefine
# the name of the magic folder by changing OUTBOX, above.  You should do
that
# and pick a less-obvious name.  Perhaps brand it with your organizational
# name ( OUTBOX=.WidgetsAndSonsOutbox )
HEADERFROM=X-IMAP-Sender
##NAME: IMAPDSTART:0
#
# IMAPDSTART is not used directly.  Rather, this is a convenient flag to
# be read by your system startup script in /etc/rc.d, like this:
#
#  . /etc/courier/imapd
#
#  case x$IMAPDSTART in
#  x[yY]*)
#/usr/lib/courier/imapd.rc start
#;;
#  esac
#
# The default setting is going to be NO, so you'll have to manually flip
# it to yes.
IMAPDSTART=YES
##NAME: MAILDIRPATH:0
#
# MAILDIRPATH - directory name of the maildir directory.
#
MAILDIRPATH=Maildir

---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Frequent disconnects

2005-03-02 Thread Lists Soderlund.org
) by running the command $SENDMAIL -oi -t -f $SENDER, with the
# message piped on standard input.  $SENDER will be the return address
# of the message, which is set by the authentication module.
#
# DO NOT MODIFY SENDMAIL, below, unless you know what you're doing.
#

SENDMAIL=/usr/sbin/sendmail
##NAME: HEADERFROM:0
#
# For administrative and oversight purposes, the return address, $SENDER
# will also be saved in the X-IMAP-Sender mail header.  This header gets
# added to the sent E-mail (but it doesn't get saved in the copy of the
# message that's saved in the folder)
#
# WARNING - By enabling OUTBOX above, *every* IMAP mail client will receive
# the magic OUTBOX treatment.  Therefore advance LARTing is in order for
# _all_ of your lusers, until every one of them is aware of this. 
Otherwise if
# OUTBOX is left at its default setting - a folder name that might be used
# accidentally - some people may be in for a rude surprise.  You can 
redefine
# the name of the magic folder by changing OUTBOX, above.  You should do 
that
# and pick a less-obvious name.  Perhaps brand it with your organizational
# name ( OUTBOX=.WidgetsAndSonsOutbox )

HEADERFROM=X-IMAP-Sender
##NAME: IMAPDSTART:0
#
# IMAPDSTART is not used directly.  Rather, this is a convenient flag to
# be read by your system startup script in /etc/rc.d, like this:
#
#  . /etc/courier/imapd
#
#  case x$IMAPDSTART in
#  x[yY]*)
#/usr/lib/courier/imapd.rc start
#;;
#  esac
#
# The default setting is going to be NO, so you'll have to manually flip
# it to yes.
IMAPDSTART=YES
##NAME: MAILDIRPATH:0
#
# MAILDIRPATH - directory name of the maildir directory.
#
MAILDIRPATH=Maildir
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] DISCONNECTED-problem ...

2005-02-25 Thread Lists Soderlund.org
Hi folks.
Ive tried numerous clients and im still stumped. I get timeouts from my 
server now and then, a few time per hour. It doesnt seem to occur with 
anything I can relate as a resource-spender (MRTG'ing everything on the 
machine).

Any ideas on what I can do to stop my clients from dying on me?
Regards,
Niclas
--
Feb 25 21:22:16 dns imaplogin: DISCONNECTED, 
[EMAIL PROTECTED], ip=[:::ip.ip.ip.ip], headers=274, 
body=79542, time=468
Feb 25 21:22:16 dns imaplogin: DISCONNECTED, 
[EMAIL PROTECTED], ip=[:::ip.ip.ip.ip], headers=0, 
body=4778, time=468
Feb 25 21:22:16 dns imaplogin: DISCONNECTED, 
[EMAIL PROTECTED], ip=[:::ip.ip.ip.ip], headers=1531, 
body=45389, time=468
Feb 25 21:22:16 dns imaplogin: DISCONNECTED, 
[EMAIL PROTECTED], ip=[:::ip.ip.ip.ip], headers=0, body=0, 
time=434

---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] HELP PLEASE!Courier-authlib compile error

2005-02-07 Thread Mailing Lists
Hi, I'm trying to compile new courier-authlib package on a vanilla Mandrake
10.0 (official) with command:

rpm -ta courier-authlib-0.53.tar.bz2

but compilation failed with:

snip
.
Compiling gdbmobj3.c
Linking libgdbmobj.la
Linking libgdbmobjs.la
Compiling testgdbm.C
Linking testgdbm
rm -f libshgdbmobj.a
cd .libs  ar rv ../libshgdbmobj.a gdbmobj.o gdbmobj2.o gdbmobj3.o
ar: gdbmobj.o: No such file or directory
make[3]: *** [libshgdbmobj.a] Error 1
make[3]: Leaving directory `/usr/src/RPM/BUILD/courier-authlib-0.53/gdbmobj'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/usr/src/RPM/BUILD/courier-authlib-0.53/gdbmobj'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/src/RPM/BUILD/courier-authlib-0.53'
make: *** [all] Error 2
error: Bad exit status from /var/tmp/rpm-tmp.976 (%build)


RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.976 (%build)


snip



Is there anyone who can help me???

TIA

Ciao
Gianni



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Courier-authlib compile error

2005-02-02 Thread Mailing Lists
Hi, I'm trying to compile new courier-authlib package on a vanilla Mandrake
10.0 (official) with command:

rpm -ta courier-authlib-0.53.tar.bz2

but compilation failed with:

snip
.
Compiling gdbmobj3.c
Linking libgdbmobj.la
Linking libgdbmobjs.la
Compiling testgdbm.C
Linking testgdbm
rm -f libshgdbmobj.a
cd .libs  ar rv ../libshgdbmobj.a gdbmobj.o gdbmobj2.o gdbmobj3.o
ar: gdbmobj.o: No such file or directory
make[3]: *** [libshgdbmobj.a] Error 1
make[3]: Leaving directory `/usr/src/RPM/BUILD/courier-authlib-0.53/gdbmobj'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/usr/src/RPM/BUILD/courier-authlib-0.53/gdbmobj'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/src/RPM/BUILD/courier-authlib-0.53'
make: *** [all] Error 2
error: Bad exit status from /var/tmp/rpm-tmp.976 (%build)


RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.976 (%build)


snip



Is there anyone who can help me???

TIA

Ciao
Gianni



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] couriermlm: how do i create moderators?

2003-10-16 Thread lists
i can't seem to find any information on how to create list moderators.



---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] couriermlm: case-insensitive e-mail address check?

2003-09-25 Thread lists
if someone is subscribed to a mailing list as [EMAIL PROTECTED], but 
sends mail with a From: address as [EMAIL PROTECTED], the message is 
rejected, claiming the user is not subscribed to the list.

how can i make this test case-insensitive?





---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] couriermlm: case-insensitive e-mail address check?

2003-09-25 Thread lists
MH - Entwicklung wrote:

 You can create the file /etc/courier/locallowercase.
 Courier then handels all recipients case-insensitive.
i have this file in place - this permits case-insensitive delivery to 
local accounts, but does not correct the case-sensitive comparison of 
an incoming message's From: address against the list's subscription 
database.



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Second try: case-sensitivity in mailing list subscription e-mail addresses

2003-09-18 Thread lists
is there no switch similar to locallowercase that will turn off case 
sensitivity when matching incoming mail against a mailing list's 
subscription database?

we have a number of users who are having mail returned not a 
subscriber because of this.

a user might set up one mail client with from address as 
[EMAIL PROTECTED], another as [EMAIL PROTECTED] etc.  i would like to 
treat these as equivalent.



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] couriermlm - managing others' subscriptions without requiring confirmation

2003-09-18 Thread lists
how do i set up a user so that he can manage a list's subscriptions 
using e-mail commands, without requiring confirmation from the e-mail 
address holder?  some of the list members may not be savvy enough to 
reliably manage even the confirmation process, but their membership is 
mandatory.

no shell is available to run couriermlm directly.



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] case-sensitivity in mailing lists?

2003-09-17 Thread lists
is case sensitivity an issue with addresses in couriermlm mailing lists?

the user's e-mail address is subscribed to the list in lower case, but
mail sent to the list from the user is returned with a notice that the
user is not subscribed to the list.  aside from case, the subscription
address and the actual from address are identical.
i do have locallowercase in the courier config dir.





---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] couriermlm and ctrl-D

2003-09-16 Thread lists
how can i eliminate the ctrl-d requirement when using couriermlm sub/unsub?



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] random authentication failure squirrelmail qmail courier

2003-01-13 Thread lists
Do you mean when I compile Courier?
e.g.
./configure \
  --without-authpam \
  --without-authldap \
  --without-authpwd \
  --without-authmysql \
  --without-authpgsql \
  --without-authshadow \
  --without-authuserdb \
  --without-authcustom \
  --without-authcram \
  --without-authdaemon \
  --with-authvchkpw \

Thanks,
dan

- Original Message -
From: Jesse Cablek [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, January 13, 2003 12:48 PM
Subject: RE: [courier-users] random authentication failure squirrelmail
qmail courier


 Dan [EMAIL PROTECTED] scribbled;

 [snip]
  I tried using authvchkpw as the only option in the
  authmodulelist, to the
  same result.
 

 Specify authvchkpw as the only one in the configure line, and don't use
 authdaemond. I experienced the same with courier-imap and sqwebmail.
 authdaemond doesn't appear to be really reliable.

 -jesse



 ---
 This SF.NET email is sponsored by: FREE  SSL Guide from Thawte
 are you planning your Web Server Security? Click here to get a FREE
 Thawte SSL guide and find the answers to all your  SSL security issues.
 http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en
 ___
 courier-users mailing list
 [EMAIL PROTECTED]
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users






---
This SF.NET email is sponsored by: FREE  SSL Guide from Thawte
are you planning your Web Server Security? Click here to get a FREE
Thawte SSL guide and find the answers to all your  SSL security issues.
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: [courier-users] Re: switching from cyrus to courier?

2002-03-04 Thread Luc Brouard (mailing lists)

Bill Campbell said:
 On Mon, Mar 04, 2002 at 06:32:23PM +0100, Axel Eble wrote:
Heya,

has anybody switched from cyrus to courier and retained the emails? Is
that possible?

If you don't have a lot of users, you can use the python script imapcp
(version 0.7), that connects to one imap server and duplicate what it
founds in another imap.
The only drawback I've foud for this is that it losts seen state.
I may modify it but I have no spare time right now.

Usefull if you have less that 10 users and many folders.

I thought about using isync but it needs to be defined every single
folder !! The good side, it keeps seen state.

The seen state in cyrus is not easy to understand (needs to look at the
code I think). But if someone finds how to do this, a mass conversion of
cyrus mailbox to courier maildir can be done very easily.



 I haven't made the switch, only using Cyrus on a test system here
 running Caldera's Volution Messaging Server.  I have been looking at
 that machine, and I don't think it should be difficult to convert the
 Cyrus mail files to Courier since Cyrus keeps the messages in
 individual files into Maildir mailboxes compatible with Cyrus.

 I wrote a perl module to add mail to Maildir mailboxes which might be
 useful, and I would like some peer review.  The main features are that
 it allows one to screen for duplicate messages or messages with
 duplicate bodies in one mailbox.  It can either drop duplicates, or put
 them in a separate mailbox.  It uses the Date: header in the message to
 generate the date part of the file name, and the md5 checksum of
 the body for the sequence number (with additional sequence if
 duplicate bodies aren't suppressed).

I am interested at looking at this, or trying to do the conversion with
your tool.


 If anybody's interested in looking at this, I have it in the normal
 CPAN style build, and can supply a tarball.

 Bill

cheers
luc

 --
 INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
 UUCP:   camco!bill  PO Box 820; 6641 E. Mercer Way
 FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206)
 236-1676 URL: http://www.celestial.com/

 Many companies that have made themselves dependent on [the equipment of
 a certain major manufacturer] (and in doing so have sold their soul to
 the devil) will collapse under the sheer weight of the unmastered
 complexity of their data processing systems.
   -- Edsger W. Dijkstra, SIGPLAN Notices, Volume 17, Number 5

 ___
 courier-users mailing list
 [EMAIL PROTECTED]
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users




___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: [courier-users] Re:Re:Courier MTA on win32 platform?

2002-02-13 Thread Luc Brouard (mailing lists)

If you need other servers, why don't you just install linux or *BSD
and install courier on it ?

I don't see the reason for any win32 platform (even if you managed to
run courier with cygwin...), are you planning to run other services
on this win32 box ? If no just do linux instead ...

luc

Patrick B. said:
 Hi!

 Sam wrote:
 Well, we do not plan to replace the working Solaris solution with a
 win32 one,
 it is an additional support for win32 because surprisingly, many people
 do use
 ms os/soft, especially in small to mid-size companys.

 Courier MTA on win32 systems.
 Does anybody have an idea of how this could work (if at all)?

No, it will not work.  For many reasons.  Forget it.

 Seems that one should be graceful for getting an answer at all because
 other people in this mailing list probably don't even bother reading a
 message if there's a 'forbidden word' like win32 in the subject. ;)
 Anyway, if the only reason is that win sucks, I don't care;
 I don't do this for personal entertainment.
 Are you sure about your statement, did you ever hear of someone
 who tried it and failed?
 Could you please be more precise and list at least the most important
 of those 'many reasons'?


 Thanks,
 Patrick


 
  patrick berzbach . weblicon technologies ag
  software developer sync technology

  torstrasse 6 . vox: +49 (0)30-72 62 69-127 .
  http://www.weblicon.net d-10119 berlin   . fax: +49 (0)30-72 62 69-100
  . [EMAIL PROTECTED]






 ___
 courier-users mailing list
 [EMAIL PROTECTED]
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users




___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users