43 lines
2.1 KiB
Plaintext
43 lines
2.1 KiB
Plaintext
use strict;
|
|
|
|
# l10n (localization) of the AMaViSd-new DSN templates
|
|
# Override or change as necessary
|
|
|
|
# Select notifications text encoding when Unicode-aware Perl is converting
|
|
# text from internal character representation to external encoding (charset
|
|
# in MIME terminology). Used as argument to Perl Encode::encode subroutine.
|
|
#
|
|
# to be used in RFC 2047-encoded header field bodies, e.g. in Subject:
|
|
#$hdr_encoding = 'iso-8859-1'; # (default: 'iso-8859-1')
|
|
#
|
|
# to be used in notification body text: its encoding and Content-type.charset
|
|
#$bdy_encoding = 'iso-8859-1'; # (default: 'iso-8859-1')
|
|
|
|
# Default template texts for notifications may be overruled by directly
|
|
# assigning new text to template variables, or by reading template text
|
|
# from files. A second argument may be specified in a call to read_text(),
|
|
# specifying character encoding layer to be used when reading from the
|
|
# external file, e.g. 'utf8', 'iso-8859-1', or often just $bdy_encoding.
|
|
# Text will be converted to internal character representation by Perl 5.8.0
|
|
# or later; second argument is ignored otherwise. See PerlIO::encoding,
|
|
# Encode::PerlIO and perluniintro man pages.
|
|
#
|
|
# $notify_sender_templ = read_text('/var/amavis/notify_sender.txt');
|
|
# $notify_virus_sender_templ= read_text('/var/amavis/notify_virus_sender.txt');
|
|
# $notify_virus_admin_templ = read_text('/var/amavis/notify_virus_admin.txt');
|
|
# $notify_virus_recips_templ= read_text('/var/amavis/notify_virus_recips.txt');
|
|
# $notify_spam_sender_templ = read_text('/var/amavis/notify_spam_sender.txt');
|
|
# $notify_spam_admin_templ = read_text('/var/amavis/notify_spam_admin.txt');
|
|
|
|
# If notification template files are collectively available in some directory,
|
|
# you can use read_l10n_templates which calls read_text for each known
|
|
# template. Name the files as above, and include a file named "charset" with
|
|
# the charset used in the files. This is how Debian ships l10n templates.
|
|
#
|
|
# syntax: read_l10n_templates(<directory>); OR
|
|
# read_l10n_templates(<subdirectory>, <master directory>);
|
|
#
|
|
read_l10n_templates('en_US', '/etc/amavis');
|
|
|
|
1; # ensure a defined return
|