View | Details | Raw Unified | Return to bug 15307 | Differences between
and this patch

Collapse All | Expand All

(-)debian/univention-mail-postfix-forward.univention-config-registry (+1 lines)
 Lines 3-8    Link Here 
3
Variables: mail/relay
3
Variables: mail/relay
4
Variables: hostname
4
Variables: hostname
5
Variables: domainname
5
Variables: domainname
6
Variables: postfix/ipv6
6
7
7
Type: file
8
Type: file
8
File: etc/aliases
9
File: etc/aliases
(-)debian/postinst (+1 lines)
 Lines 31-36    Link Here 
31
#DEBHELPER#
31
#DEBHELPER#
32
32
33
univention-config-registry set postfix/autostart=yes
33
univention-config-registry set postfix/autostart=yes
34
univention-config-registry set postfix/ipv6?no
34
35
35
eval `univention-baseconfig shell`
36
eval `univention-baseconfig shell`
36
37
(-)debian/univention-mail-postfix-forward.univention-config-registry-variables (+5 lines)
 Lines 16-18    Link Here 
16
Type=str
16
Type=str
17
Categories=service-mail
17
Categories=service-mail
18
18
19
[postfix/ipv6]
20
Description[de]=Aktiviert/Deaktiviert IPv6-Funktionalität in Postfix
21
Description[en]=Enables/Disables IPv6 funtionality for Postfix
22
Type=str
23
Categories=service-mail
(-)debian/changelog (+12 lines)
 Lines 1-3    Link Here 
1
univention-mail-postfix-forward (2.1.1-1) unstable; urgency=low
2
3
  * small fix (Bug #15307)
4
5
 -- Kai-Wilhelm Bolte <bolte@univention.de>  Thu,  5 Nov 2009 10:30:36 +0100
6
7
univention-mail-postfix-forward (2.1.0-1) unstable; urgency=low
8
9
  *  new UCR variable postfix/ipv6 will enable / disable IPv6 functionality (Bug #15307)
10
11
 -- Kai-Wilhelm Bolte <bolte@univention.de>  Mon, 24 Aug 2009 14:01:19 +0200
12
1
univention-mail-postfix-forward (2.0.1-1) unstable; urgency=low
13
univention-mail-postfix-forward (2.0.1-1) unstable; urgency=low
2
14
3
  * provide new UCR category service-mail (Bug #13505)
15
  * provide new UCR category service-mail (Bug #13505)
(-)conffiles/etc/postfix/main.cf (+11 lines)
 Lines 40-42    Link Here 
40
mailbox_command =
40
mailbox_command =
41
mailbox_size_limit = 0
41
mailbox_size_limit = 0
42
recipient_delimiter = +
42
recipient_delimiter = +
43
44
#
45
# IPv6 support
46
# possible settings for inet_protocols are: ipv4 ; all ; ipv4,ipv6 ; ipv6
47
#
48
@!@
49
if not configRegistry.get('postfix/ipv6', 'yes' ).lower() in ( 'no', 'false', '0' ):
50
        print 'inet_protocols = all'
51
else:
52
        print 'inet_protocols = ipv4'
53
@!@

Return to bug 15307