-
Notifications
You must be signed in to change notification settings - Fork 2
/
footermilter.ini
134 lines (116 loc) · 4.91 KB
/
footermilter.ini
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
################################################################################
# JMilter Server for connections from an MTA to add a footer.
#
# JMilter is an Open Source implementation of the Sendmail milter protocol, for
# implementing milters in Java that can interface with the Sendmail or Postfix
# MTA.
#
# Java implementation of the Sendmail Milter protocol based on the project of
# org.nightcode.jmilter from [email protected].
#
# @author Klaus Tachtler. <[email protected]>
#
# Homepage : http://www.tachtler.net
#
# Licensed under the Apache License, Version 2.0 (the "License"); you
# may not use this file except in compliance with the License. You may
# obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License..
#
# Copyright (c) 2022 Klaus Tachtler. All Rights Reserved.
# Klaus Tachtler. <[email protected]>
# http://www.tachtler.net
#
################################################################################
################################################################################
# [server] section - Start configuration for the server.
################################################################################
[server]
# IPv4 address or hostname to listen.
listen = 127.0.0.1
# Port to listen.
port = 10099
################################################################################
# [footer] section - Configuration of the footers to be used.
################################################################################
#
# !IMPORTANT: Every section
# a.) must start with the word: footer
# b.) must have an unique name
#
# EXAMPLES: [footer: default], [footer: [email protected]], [footer: 001]
#
# ==============================================================================
#
# from field: If inside a [footer]-section the from field was defined with the
# following syntax: @domain.tld -> NO localpart! <-
# this will be used as DEFAULT for the domain, if no email address
# will match!
#
# EXAMPLE: from = @example.com
#
# ==============================================================================
#
# text/html : For a better configuration view for the text and html fields, it's
# possible to use a single \ (backslash) at the end of the line!
#
# EXAMPLE: text = -- \
# first word \
# second word \
# last word.
#
# SAME AS: text = -- first word second word last word.
#
# ==============================================================================
#
# escape's : Some escape sequences can be used, for more well formatted output!
# Escape sequences description:
#
# \t Insert a tab in the text at this point.
# \b Insert a backspace in the text at this point.
# \n Insert a newline in the text at this point.
# \r Insert a carriage return in the text at this point.
# \f Insert a formfeed in the text at this point.
# \' Insert a single quote character in the text at this point.
# \" Insert a double quote character in the text at this point.
# \\ Insert a backslash character in the text at this point.
#
################################################################################
[footer: @example.com]
# Enable this footer.
enabled = true
# Email "mail from:" for generating the footer.
from = @example.com
# Footer for text/plain.
text = -- \
\n\
\n\
--------------------------------------------\n\
Footer default\n\
--------------------------------------------\n\
\n
# Footer for text/html.
html = <br\>\n\
<br\>\n\
<span style=\"font-family:monospace; color:#000000\">-- </span><br>\n\
<br\>\n\
<span style=\"font-family:monospace; color:#000000\">Footer default</span><br>\n\
<br\>\n\n
################################################################################
[footer: [email protected]]
# Enable this footer.
enabled = true
# Email "mail from:" for generating the footer.
from = [email protected]
# Footer for text/plain.
text = -- \n\n--------------------------------------------\nFooter user\n--------------------------------------------\n\n
# Footer for text/html.
html = <br\>\n<br\>\n<span style=\"font-family:monospace; color:#000000\">-- </span><br>\n<br\>\n<span style=\"font-family:monospace; color:#000000\">Footer user</span><br>\n<br\>\n\n
################################################################################