Displaying 9 results from an estimated 9 matches for "notpossible".
2009 Jun 15
1
Dovecot Antispam plugin
...1.0.7, where the
following code:
199 if (i_stream_read_data(mailstream, &beginning, &size, 5) < 0 ||
200 size < 5) {
201 ret = -1;
202 mail_storage_set_error(t->box->storage,
203 ME(NOTPOSSIBLE)
204 "Failed to read mail beginning");
205 goto failed_to_copy;
206 }
207
208 /* "From "? skip line */
209 if (memcmp("From ", beginning, 5) == 0) {
210 i_stream_read...
2008 Oct 29
3
antispam plugin claims "antispam signature not found"
Hi,
I am trying to setup the antispam plugin using the direct dspam backend.
I have set
antispam_signature = X-DSPAM-Signature
in dovecot.conf
and in all mails I have signature lines like
X-DSPAM-Signature: 1,49084a24139132188715614
but still, if I try to move a mail into the spam folder, i get the IMAP error message
"antispam signature not found".
I thought it might have to do
2016 Sep 09
1
Samba4 4.5.0 acts as fileserver - there is not possible to login to !
...bd and winbind daemons
are started.
User to OS is added by:
useradd -s /usr/sbin/nologin user -g 65534 -p password
then user is added to Samba4
/usr/local/samba/bin/smbpasswd -a user
After attempting to login to Saba4 server and provide usr/pass,
requestiong user/pass is appeared again.
And it is notpossible to login to server.
The same configuration was working at 4.4.4 version.
What is wrong ?
CpServiceSpb
2016 Sep 11
0
Samba4 4.5.0 acts as fileserver - there is not possible to login to !
...login user -g 65534 -p password
>> > then user is added to Samba4
>> > /usr/local/samba/bin/smbpasswd -a user
>> >
>> > After attempting to login to Saba4 server and provide usr/pass,
>> > requestiong user/pass is appeared again.
>> > And it is notpossible to login to server.
>> >
>> > The same configuration was working at 4.4.4 version.
>>
>> What is the client? Could the client not be set to use NTLMv2? (The
>> default was changed for Samba 4.5).
>>
>> Andrew Bartlett
>> --
>> Andrew Bar...
2016 Nov 28
6
Antispam plugin: insufficent error messages
...enum classification wanted)
{
const char *const *signatures;
struct siglist *item;
signatures = get_mail_headers(mail, cfg->signature_hdr);
if (!signatures || !signatures[0]) {
if (!cfg->signature_nosig_ignore) {
mail_storage_set_error(t->box->storage,
ME(NOTPOSSIBLE)
"antispam signature not found");
return -1; /* <-- HERE */
} else {
return 0;
}
}
while (signatures[1])
signatures++;
item = i_new(struct siglist, 1);
item->next = *list;
item->wanted = wanted;
item->sig = i_strdup(signat...
2012 Sep 05
1
Trouble implementing Antispam plug-in for Dovecot
...NOT] antispam plugin not configured"
That exact phrase appears only once in a Google search (
http://dovecot-antispam.sourcearchive.com/documentation/1.1plus-p20090218.git.g28075fa/mailtrain_8c-source.html
):
if (!hamaddr || !spamaddr) {
mail_storage_set_error(t->box->storage,
ME(NOTPOSSIBLE)
"antispam plugin not configured");
return -1;
}
Based on the surrounding source code, which I realize may be old, it
seems that Ham and Spam addresses are required, or similar.
I am using the following configuration options:
/etc/dovecot/dovecot.conf
--------------------
## IMAP...
2016 Dec 17
0
Antispam plugin: insufficent error messages
...const char *const *signatures;
> struct siglist *item;
>
> signatures = get_mail_headers(mail, cfg->signature_hdr);
> if (!signatures || !signatures[0]) {
> if (!cfg->signature_nosig_ignore) {
>
> mail_storage_set_error(t->box->storage,
> ME(NOTPOSSIBLE)
> "antispam signature not found");
> return -1; /* <-- HERE */
> } else {
> return 0;
> }
> }
>
> while (signatures[1])
> signatures++;
>
> item = i_new(struct siglist, 1);
> item->next = *list;...
2009 Jun 13
3
dovecot-antispam plugin and "Failed to call dspam" message
Hi,
I had this working until I recently upgraded Dovecot, and now I'm getting a message back from
Thunderbird of "Failed to call dspam." when I attempt to move a message into one of the designated
spam folders.
However, I know from looking at the dspam system.log file, the retraining actually happens - so it
-does- appear to be calling dspam. It appears that the 'move'
2009 Feb 03
4
Dovecot-antispam does not work
Hi,
I have installed dovecot-antispam and configured it this way (as in the doc)
with the dspam exe:
protocol imap {
mail_plugins = antispam
mail_plugin_dir = /usr/lib64/dovecot/imap
}
plugin {
# For dovecot-antispam:
antispam_signature = X-DSPAM-Signature
antispam_trash = trash;Trash;Deleted Items
antispam_spam = SPAM;Junk
#antispam_unsure = unsure