Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: DBMail: users

sieve error on 2.2.10

 

 

DBMail users RSS feed   Index | Next | Previous | View Threaded


7crewz at gmail

Jan 18, 2009, 6:33 PM

Post #1 of 5 (475 views)
Permalink
sieve error on 2.2.10

Hello to all

Can any body know what is this and howto stop this message below from
entering user mailbox im using dbmail 2.2.10
please help urgent !!!!


Subject: Sieve script parse
errorFrom: DBMAIL-MAILER[at]dbmail

Your
Sieve script [phpscript] failed to parse correctly.
Messages
will be delivered to your INBOX for now.
The error message
is:
unsupported feature: notify


niki at guldbrand

Jan 18, 2009, 9:28 PM

Post #2 of 5 (444 views)
Permalink
Re: sieve error on 2.2.10 [In reply to]

Hi.

On Mon, 2009-01-19 at 10:33 +0800, 7CREWZ wrote:
> Hello to all
>
> Can any body know what is this and howto stop this message below from
> entering user mailbox im using dbmail 2.2.10
> please help urgent !!!!

Have you had a look in /etc/dbmail/dbmail.conf, and made sure that this
option is disabled ?

#
# Turn on/off the Sieve Notify extension
#
SIEVE_NOTIFY = no


>
> Subject: Sieve script parse
> errorFrom: DBMAIL-MAILER[at]dbmail
>
> Your
> Sieve script [phpscript] failed to parse correctly.
> Messages
> will be delivered to your INBOX for now.
> The error message
> is:
> unsupported feature: notify
Attachments: signature.asc (0.82 KB)


7crewz at gmail

Jan 18, 2009, 10:02 PM

Post #3 of 5 (442 views)
Permalink
Re: sieve error on 2.2.10 [In reply to]

hello to all

i already set to SIEVE_NOTIFY = no nut error still comout to
user

On Mon, Jan 19, 2009 at 1:28 PM, Niki Guldbrand <niki[at]guldbrand.net> wrote:

> Hi.
>
> On Mon, 2009-01-19 at 10:33 +0800, 7CREWZ wrote:
> > Hello to all
> >
> > Can any body know what is this and howto stop this message below from
> > entering user mailbox im using dbmail 2.2.10
> > please help urgent !!!!
>
> Have you had a look in /etc/dbmail/dbmail.conf, and made sure that this
> option is disabled ?
>
> #
> # Turn on/off the Sieve Notify extension
> #
> SIEVE_NOTIFY = no
>
>
> >
> > Subject: Sieve script parse
> > errorFrom: DBMAIL-MAILER[at]dbmail
> >
> > Your
> > Sieve script [phpscript] failed to parse correctly.
> > Messages
> > will be delivered to your INBOX for now.
> > The error message
> > is:
> > unsupported feature: notify
>
>
> _______________________________________________
> DBmail mailing list
> DBmail[at]dbmail.org
> https://mailman.fastxs.nl/mailman/listinfo/dbmail
>
>


vulture at netvulture

Jan 18, 2009, 10:29 PM

Post #4 of 5 (438 views)
Permalink
Re: sieve error on 2.2.10 [In reply to]

This error would be coming from the fact that your script is trying to
use notify. As far as I can tell, dbmail is currently not supporting the
use of notify, despite setting sieve_notify=yes. There is processing of
notify, but not supported nor maintained as far as I can tell given:
excerpt from src/modules/sortsiecve.c:
if (sieve_config.notify) {
TRACE(TRACE_ERR, "Sieve notify is not supported in this
release.");
sieve2_callbacks(sieve2_context, notify_callbacks);
}

Please check the script for the affected user(s) for the use of notify
and remove that call. That should stop your issue.

-Jon

7CREWZ wrote:
> hello to all
>
> i already set to SIEVE_NOTIFY = no nut error still
> comout to user
>
> On Mon, Jan 19, 2009 at 1:28 PM, Niki Guldbrand <niki[at]guldbrand.net
> <mailto:niki[at]guldbrand.net>> wrote:
>
> Hi.
>
> On Mon, 2009-01-19 at 10:33 +0800, 7CREWZ wrote:
> > Hello to all
> >
> > Can any body know what is this and howto stop this message below
> from
> > entering user mailbox im using dbmail 2.2.10
> > please help urgent !!!!
>
> Have you had a look in /etc/dbmail/dbmail.conf, and made sure that
> this
> option is disabled ?
>
> #
> # Turn on/off the Sieve Notify extension
> #
> SIEVE_NOTIFY = no
>
>
> >
> > Subject: Sieve script parse
> > errorFrom: DBMAIL-MAILER[at]dbmail
> >
> > Your
> > Sieve script [phpscript] failed to parse correctly.
> > Messages
> > will be delivered to your INBOX for now.
> > The error message
> > is:
> > unsupported feature: notify
>
>
> _______________________________________________
> DBmail mailing list
> DBmail[at]dbmail.org <mailto:DBmail[at]dbmail.org>
> https://mailman.fastxs.nl/mailman/listinfo/dbmail
>
>
>
> --
> This message has been scanned for viruses and
> dangerous content by *MailScanner* <http://www.mailscanner.info/>, and is
> believed to be clean.
> ------------------------------------------------------------------------
>
> _______________________________________________
> DBmail mailing list
> DBmail[at]dbmail.org
> https://mailman.fastxs.nl/mailman/listinfo/dbmail
>


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

_______________________________________________
DBmail mailing list
DBmail[at]dbmail.org
https://mailman.fastxs.nl/mailman/listinfo/dbmail


7crewz at gmail

Jan 19, 2009, 12:52 AM

Post #5 of 5 (436 views)
Permalink
Re: sieve error on 2.2.10 [In reply to]

Thanks To all,
Already fix the problem i see in
dbmail_sievescriptsremove["fileinto","envelope","reject","vacation","relational","comparator-i;ascii-numeric","regex",
*"notify"*]
remove that*"notify"* no more complaining Sieve script
[phpscript] failed to parse correctly.
Messages will be delivered to your INBOX for now. The
error message is: unsupported feature: notify.
thanks to all for helping


On Mon, Jan 19, 2009 at 2:29 PM, Jonathan Feally <vulture[at]netvulture.com>wrote:

> This error would be coming from the fact that your script is trying to use
> notify. As far as I can tell, dbmail is currently not supporting the use of
> notify, despite setting sieve_notify=yes. There is processing of notify, but
> not supported nor maintained as far as I can tell given:
> excerpt from src/modules/sortsiecve.c:
> if (sieve_config.notify) {
> TRACE(TRACE_ERR, "Sieve notify is not supported in this
> release.");
> sieve2_callbacks(sieve2_context, notify_callbacks);
> }
>
> Please check the script for the affected user(s) for the use of notify and
> remove that call. That should stop your issue.
>
> -Jon
>
> 7CREWZ wrote:
>
>> hello to all
>>
>> i already set to SIEVE_NOTIFY = no nut error still comout to
>> user
>>
>> On Mon, Jan 19, 2009 at 1:28 PM, Niki Guldbrand <niki[at]guldbrand.net<mailto:
>> niki[at]guldbrand.net>> wrote:
>>
>> Hi.
>>
>> On Mon, 2009-01-19 at 10:33 +0800, 7CREWZ wrote:
>> > Hello to all
>> >
>> > Can any body know what is this and howto stop this message below
>> from
>> > entering user mailbox im using dbmail 2.2.10
>> > please help urgent !!!!
>>
>> Have you had a look in /etc/dbmail/dbmail.conf, and made sure that
>> this
>> option is disabled ?
>>
>> #
>> # Turn on/off the Sieve Notify extension
>> #
>> SIEVE_NOTIFY = no
>>
>>
>> >
>> > Subject: Sieve script parse
>> > errorFrom: DBMAIL-MAILER[at]dbmail
>> >
>> > Your
>> > Sieve script [phpscript] failed to parse correctly.
>> > Messages
>> > will be delivered to your INBOX for now.
>> > The error message
>> > is:
>> > unsupported feature: notify
>>
>>
>> _______________________________________________
>> DBmail mailing list
>> DBmail[at]dbmail.org <mailto:DBmail[at]dbmail.org>
>> https://mailman.fastxs.nl/mailman/listinfo/dbmail
>>
>>
>>
>> --
>> This message has been scanned for viruses and
>> dangerous content by *MailScanner* <http://www.mailscanner.info/>, and is
>> believed to be clean.
>> ------------------------------------------------------------------------
>>
>> _______________________________________________
>> DBmail mailing list
>> DBmail[at]dbmail.org
>> https://mailman.fastxs.nl/mailman/listinfo/dbmail
>>
>>
>
>
> --
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
>
>
> _______________________________________________
> DBmail mailing list
> DBmail[at]dbmail.org
> https://mailman.fastxs.nl/mailman/listinfo/dbmail
>

DBMail users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.