Der eigene Mailserver - wie geht das?

Wilhelm Boltz boltz.willi.list at gmail.com
Do Jul 13 22:34:58 CEST 2017


Hallo Thomas,

Am Donnerstag, 13. Juli 2017, 18:27:51 CEST schrieb toml at thlu.de:
> Moin
> 
> Am 11.07.2017 um 14:43 schrieb toml at thlu.de:
> > [...]
> Allerding bei der letzten Hürde, die neuen Sieve-Scripte, hoffe ich
> noch mal kurz auf ein wenig Starthilfe von hier. Wie müsste ich eine
> Regel aufbauen, damit eine EMail OHNE meine Email-Adresse in
> Reinschrift in den  Empfänger-Feldern  im Ordner Spam landet.  Also
> sinngemäß etwa so:
> 
> require ["fileinto", "envelope", "subaddress"];
> if not  "to"   "TomL at example.com and
>    not   "cc"  "TomL at example.com and
>    not  "bcc" "TomL at example.com
> "{
>    fileinto "Spam";
> }
> 
> Das erwischt dann alle Werb-Rundschreiben des MAIL-ISP, die keine
> echte Empfängeradresse beinhalten.

aus RFC5228.txt:

>  # Try and catch unsolicited email.  If a message is not to me,
>  
>     # or it contains a subject known to be spam, file it away.
>     #
>     elsif anyof (NOT address :all :contains
>     
>                    ["To", "Cc", "Bcc"] "me at example.com",
>                  
>                  header :matches "subject"
>                  
>                    ["*make*money*fast*", "*university*dipl*mas*"])
>             
>             {
>             fileinto "spam";   # move to "spam" mailbox
>             }
>     
>     else
>     
>             {
>             # Move all other (non-company) mail to "personal"
>             # mailbox.
>             fileinto "personal";
>             }

Sollte also funktionieren.

Gruß
Willi

-- 
openSUSE Tumbleweed 201707010
GNU/Linux 4.11.8-1-default x86_64



Mehr Informationen über die Mailingliste Dovecot