forked from RotherOSS/otobo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mailfilter.dist
82 lines (57 loc) · 2.13 KB
/
.mailfilter.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# --
# OTOBO is a web-based ticketing system for service organisations.
# --
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
# Copyright (C) 2019-2021 Rother OSS GmbH, https://otobo.de/
# --
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# --
#SYS_HOME=/opt/otobo
SYS_HOME=$HOME
import DEFAULT
LOCALDEFAULT=$DEFAULT
DEFAULT=${SYS_HOME}/var/spool/`date +%s`${FROM}${SIZE}
MONTHFOLDER=`date +%Y-%m`
YEARFOLDER=`date +%Y`
# Remove all X-OTOBO Header (allow this only for trusted email)
# e. g. from *@example.com
if (/^To:.*@example.com/)
{
xfilter "grep -vi '^X-OTOBO-'"
}
# or just no emails with "X-OTOBO-Ident: ahfiw2Fw32r230dddl2foeo3r" header!
#if (/^X-OTOBO-Ident: ahfiw2Fw32r230dddl2foeo3r/)
#{
# xfilter "grep -vi '^X-OTOBO-'"
#}
# Examples for queue presorting.
if (/^To:.*@example.com/)
{
xfilter "formail -I \"X-OTOBO-Queue: example\""
}
if (/^List-Id:.*OpenAntiVirus/)
{
xfilter "formail -I \"X-OTOBO-Queue: OpenAntiVirus\""
}
# Example for add free form key and value (max 3).
if (/^To:.*@example.com/)
{
xfilter "formail -I \"X-OTOBO-ArticleKey1: Test\""
xfilter "formail -I \"X-OTOBO-ArticleValue1: True!\""
}
# Backup of all incoming emails.
# It's always better to have a backup of all incoming emails!
cc ${SYS_HOME}/var/INBOX.Backup.${MONTHFOLDER}
# Pipe all email into the PostMaster process.
xfilter "${SYS_HOME}/bin/otobo.Console.pl Maint::PostMaster::Read"
# spool all the rest (which the otobo.PostMaster.pl can't process!)
# If the database is down or the otobo.PostMaster.pl exit was not '0'!
to $DEFAULT
# end of .mailfilter