Re: [Dbmail] set 'seen' flag for message via sieve script

2007-08-07 Thread Aaron Stone
There is a bug. I believe that \\Flagged was actually the only thing that worked. All flags should be working again in 2.2.6. On Tue, 2007-08-07 at 13:27 +0200, Michael Monnerie wrote: > On Dienstag, 7. August 2007 umask wrote: > >setflag "\\Seen"; > > Can you write full work script? > > Sorr

Re: [Dbmail] undeliverable email is returned to body TO: field instead of envelope sender (A rno)

2007-08-07 Thread Aaron Stone
We don't have an SMTP daemon, what we call 'dbmail-smtp' is a pipe delivery daemon that is called by the MTA (aka smtp daemon ;-) Aaron On Tue, 2007-08-07 at 04:02 -0700, A rno wrote: > Dear Aaron, > > I'm using dbmail-lmtpd. I don't know of an > dbmail-smtpd daemon, is that available too nowada

Re: [Dbmail] set 'seen' flag for message via sieve script

2007-08-07 Thread Aaron Stone
I received a fix for this about a week ago. It's in my tree, will see about getting it into SVN this week. On Tue, 2007-08-07 at 15:40 +0400, umask wrote: > Unfortunately imap4flags sieve extension does not work properly in DBMail. > > mysql> select * from dbmail_messages; > > ... > | 3

[Dbmail] purge

2007-08-07 Thread Jim Douglas
I woul like to purge everything except user names and domain setup. What is the best way to do this? Jim _ More photos, more messages, more storage—get 2GB with Windows Live Hotmail. http://imagine-windowslive.com/hotmail/?locale

Re: [Dbmail] POP/IMAP logging via syslog

2007-08-07 Thread Jonathan Feally
You can change the logged in /logging out messages in pop.c, dbmail-imapsession.c and imapcommands.c from a TRACE_MESSAGE to a TRACE_WARNING so you can use a TRACE_LEVEL=2. This will probably solve your problem. But you would need to change these everytime you compile a new version. I do see th

Re: [Dbmail] Segmentation fault in dbmail-users and dbmail-util

2007-08-07 Thread Aaron Stone
Can you run dbmail-user under gdb and get a backtrace? Let me know if you need some help doing this. On Tue, Aug 7, 2007, Peter Hochgemuth <[EMAIL PROTECTED]> said: > Ok, forget about my intention. The problem is worse: > > $ dbmail-users -x [EMAIL PROTECTED] -t [EMAIL PROTECTED],[EMAIL PROTECTE

Re: [Dbmail] Segmentation fault in dbmail-users and dbmail-util

2007-08-07 Thread Peter Hochgemuth
Ok, forget about my intention. The problem is worse: $ dbmail-users -x [EMAIL PROTECTED] -t [EMAIL PROTECTED],[EMAIL PROTECTED] $ dbmail-users -l -- users -- [EMAIL PROTECTED]@__:x:1:0:0.00:0.00: __public__:x:3:0:0.00:0.00: anyone:x:2:0:0.00:0.00: -- forwards -- Segmentation fault Where comes th

Re: [Dbmail] Segmentation fault in dbmail-users and dbmail-util

2007-08-07 Thread Blake Mitchell
If you're not willing to set an alias to each recipient, then you're not going to get what you want from DBmail. That is how it handles delivey lists. ___ DBmail mailing list DBmail@dbmail.org https://mailman.fastxs.nl/mailman/listinfo/dbmail

[Dbmail] duplicate mail messages

2007-08-07 Thread Edvins
Hello! First I add user with multiple aliases dbmail-users -a user -s [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED] When I send mail to [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED] user recieve 3 identical messages. Only X-DBMail-PhysMessage-ID: header is differ. How to configur

Re: [Dbmail] set 'seen' flag for message via sieve script

2007-08-07 Thread umask
Unfortunately imap4flags sieve extension does not work properly in DBMail. mysql> select * from dbmail_messages; ... | 301 |4 |133 | 0 | 0 | 0 |0 | 1 | 0 | 19514c20fc31e36bc666a187295ba040 | 0 |

Re: [Dbmail] 'subjectfield' encoding bug

2007-08-07 Thread Casper Langemeijer
On Tue, 2007-08-07 at 15:29 +0400, umask wrote: > > > > For example we sent message with subject (next line): > > > > Fwd: =?windows-1251?b?zu/z4evo6u7i4O3gIO/w7uPw4Ozs4CBIaWdoTG9hZCAt?= > > > > 2007 > > > > In SQL select field 'subjectfield' we seen (next line): > > > > ?>?°???° ?

Re: [Dbmail] POP/IMAP logging via syslog

2007-08-07 Thread Michael Monnerie
On Donnerstag, 2. August 2007 Anne wrote: > Michael Monnerie wrote: > > Is there a way to log which users logged in via POP/IMAP? I don't > > see that info, and raising trace doesn't help either. > > I recently raised the trace level to 3 to have this info available. > Aug 2 14:26:53 server dbmail

Re: [Dbmail] 'subjectfield' encoding bug

2007-08-07 Thread umask
07.08.07, 12:05, umask <[EMAIL PROTECTED]>: > 06.08.07, 20:27, Aaron Stone <[EMAIL PROTECTED]>: > > On Mon, 2007-08-06 at 19:06 +0400, umask wrote: > > > Hello, > > > > > > We has noticed problem with encoding in field 'subjectfield'. > > > For example we sent message with subject (next line):

Re: [Dbmail] set 'seen' flag for message via sieve script

2007-08-07 Thread Michael Monnerie
On Dienstag, 7. August 2007 umask wrote: >setflag "\\Seen"; > Can you write full work script? Sorry I copied my reply out of a script documentation. The only flag I use is: addflag "\\Flagged"; and this works for me, but that's on a cyrus mail server. I don't know if dbmail supports this or

[Dbmail] undeliverable email is returned to body TO: field instead of envelope sender (A rno)

2007-08-07 Thread A rno
Dear Aaron, I'm using dbmail-lmtpd. I don't know of an dbmail-smtpd daemon, is that available too nowadays ? I'm using Postfix 2.4.1 as MTA. Only virtual domains are checked at Postfix level, aliases aren't checked at that point, these should be checked by DBMail I think. Kind regards, Arno > O

Re: [Dbmail] set 'seen' flag for message via sieve script

2007-08-07 Thread umask
-- require ["fileinto", "imap4flags"]; if header :contains ["From"] "[EMAIL PROTECTED]" { setflag "\\Seen"; fileinto "sent"; stop; } -- or -- require ["fileinto", "imap4flags"]; if header :contains ["From"] "[EMAIL PROTECTED]" { fileinto "sent"; setflag "\\Seen"; stop; } -- Does

[Dbmail] Segmentation fault in dbmail-users and dbmail-util

2007-08-07 Thread Peter Hochgemuth
Hi, I want to have one symbolic name delivering mails to more than one user. I'm not willing to set an alias to each individual recipient. Instead it seams to be easier to have only one dbmail-users -x [EMAIL PROTECTED] -t [EMAIL PROTECTED],[EMAIL PROTECTED] ... and manage the membership at this

Re: [Dbmail] set 'seen' flag for message via sieve script

2007-08-07 Thread Michael Monnerie
On Dienstag, 7. August 2007 umask wrote: > How I can set 'seen' flag for message which processed by sieve and > put to sent? use setflag '\\Seen' to mark an e-mail as read mfg zmi -- // Michael Monnerie, Ing.BSc- http://it-management.at // Tel: 0676/846 914 666

[Dbmail] set 'seen' flag for message via sieve script

2007-08-07 Thread umask
Hi! I have next sieve script -- require "fileinto"; if header :contains ["From"] "[EMAIL PROTECTED]" { fileinto "sent"; stop; } -- How I can set 'seen' flag for message which processed by sieve and put to sent? ___ DBmail mailing list DBmail@dbmai

Re: [Dbmail] 'subjectfield' encoding bug

2007-08-07 Thread umask
06.08.07, 20:27, Aaron Stone <[EMAIL PROTECTED]>: > On Mon, 2007-08-06 at 19:06 +0400, umask wrote: > > Hello, > > > > We has noticed problem with encoding in field 'subjectfield'. > > For example we sent message with subject (next line): > > Fwd: =?windows-1251?b?zu/z4evo6u7i4O3gIO/w7uPw4Ozs4C

RE: [Dbmail] undeliverable email is returned to body TO: field instead of envelope sender

2007-08-07 Thread Vladimir Likhachev
Thanks. Sorry... > Subject: RE: [Dbmail] undeliverable email is returned to body TO: field > instead of envelope sender> From: [EMAIL PROTECTED]> To: dbmail@dbmail.org> > Date: Mon, 6 Aug 2007 01:13:26 -0700> > The MTA _does_ tell DBMail about the > envelope sender in all of the> typical config