aboutsummaryrefslogtreecommitdiff
path: root/tests/local
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-03-17 07:04:22 -0300
committerEuAndreh <eu@euandre.org>2023-03-17 07:06:50 -0300
commit5b85b1368f81b7eed8efef9d07ae8c077bac73c4 (patch)
tree7f05cb1685896a7af1a78ee1196fc93aab6ef828 /tests/local
parentqueue.scm: Remove FIXME markers froom inside main.cf content (diff)
downloadpackage-repository-5b85b1368f81b7eed8efef9d07ae8c077bac73c4.tar.gz
package-repository-5b85b1368f81b7eed8efef9d07ae8c077bac73c4.tar.xz
Test for expected output of Postfix config files
Diffstat (limited to '')
-rw-r--r--tests/local-system.scm25
-rw-r--r--tests/local/main.cf21
-rw-r--r--tests/local/master.cf30
-rw-r--r--tests/local/system.scm39
4 files changed, 90 insertions, 25 deletions
diff --git a/tests/local-system.scm b/tests/local-system.scm
deleted file mode 100644
index abf09a8..0000000
--- a/tests/local-system.scm
+++ /dev/null
@@ -1,25 +0,0 @@
-(use-modules
- ((org euandre queue) #:prefix queue:)
- (gnu))
-(use-package-modules)
-(use-service-modules)
-
-(operating-system
- (host-name "a-local-test-host")
- (services
- (append
- (list
- (service queue:local-postfix-service-type))
- %base-services))
- (bootloader
- (bootloader-configuration
- (bootloader grub-bootloader)))
- (file-systems
- (append
- (list
- (file-system
- (mount-point "/")
- (type "btrfs")
- (device
- (uuid "2c66de32-dde7-ea35-750a-a1ca47a58d45" 'btrfs))))
- %base-file-systems)))
diff --git a/tests/local/main.cf b/tests/local/main.cf
new file mode 100644
index 0000000..f9eee9e
--- /dev/null
+++ b/tests/local/main.cf
@@ -0,0 +1,21 @@
+compatibility_level = 3.6
+
+queue_directory = /var/spool/postfix
+data_directory = /var/lib/postfix
+mail_owner = postfix
+setgid_group = postdrop
+
+header_checks = regexp:{ { /^Received:.*/ IGNORE }, { /^X-Originating-IP:.*/ IGNORE } }
+
+mail_spool_directory = /var/mail/
+smtp_sender_dependent_authentication = yes
+sender_dependent_relayhost_maps = hash:/var/lib/private/postfix/relayhosts-maps
+smtp_sasl_password_maps = hash:/var/lib/private/postfix/sasl-password
+smtp_sasl_auth_enable = yes
+smtp_sasl_security_options = noanonymous
+smtp_sasl_mechanism_filter = login, plain
+smtp_use_tls = yes
+smtp_tls_security_level = encrypt
+smtp_tls_note_starttls_offer = yes
+
+mynetworks = 127.0.0.0/8
diff --git a/tests/local/master.cf b/tests/local/master.cf
new file mode 100644
index 0000000..80b769a
--- /dev/null
+++ b/tests/local/master.cf
@@ -0,0 +1,30 @@
+# ============================================================================================================
+# service type private unpriv chroot wakeup maxproc command + args
+# (yes) (yes) (no) (never) (100)
+# =============================================================================================================
+
+anvil unix - - n - 1 anvil
+bounce unix - - n - 0 bounce
+cleanup unix n - n - 0 cleanup
+defer unix - - n - 0 bounce
+discard unix - - n - - discard
+error unix - - n - - error
+flush unix n - n 1000? 0 flush
+lmtp unix - - n - - lmtp
+local unix - n n - - local
+pickup unix n - n 60 1 pickup
+proxymap unix - - n - - proxymap
+proxywrite unix - - n - 1 proxymap
+qmgr unix n - n 300 1 qmgr
+relay unix - - n - - smtp
+retry unix - - n - - error
+rewrite unix - - n - - trivial-rewrite
+scache unix - - n - 1 scache
+showq unix n - n - - showq
+smtp inet n - n - - smtpd -v -o syslog_name=postfix/smtp
+smtp unix - - n - - smtp
+tlsmgr unix - - n 1000? 1 tlsmgr
+trace unix - - n - 0 bounce
+verify unix - - n - 1 verify
+virtual unix - n n - - virtual
+postlog unix-dgram n - n - 1 postlogd
diff --git a/tests/local/system.scm b/tests/local/system.scm
new file mode 100644
index 0000000..a520ee1
--- /dev/null
+++ b/tests/local/system.scm
@@ -0,0 +1,39 @@
+(use-modules
+ ((org euandre queue) #:prefix queue:)
+ ((xyz euandreh heredoc) #:prefix heredoc:)
+ (gnu))
+(use-package-modules)
+(use-service-modules)
+(heredoc:enable-syntax)
+
+(operating-system
+ (host-name "a-local-test-host")
+ (services
+ (append
+ (list
+ (service queue:local-postfix-service-type
+ (queue:postfix-configuration
+ (main.cf-extra #"-
+ smtp_sender_dependent_authentication = yes
+ sender_dependent_relayhost_maps = hash:/var/lib/private/postfix/relayhosts-maps
+ smtp_sasl_password_maps = hash:/var/lib/private/postfix/sasl-password
+ smtp_sasl_auth_enable = yes
+ smtp_sasl_security_options = noanonymous
+ smtp_sasl_mechanism_filter = login, plain
+ smtp_use_tls = yes
+ smtp_tls_security_level = encrypt
+ smtp_tls_note_starttls_offer = yes
+ "#))))
+ %base-services))
+ (bootloader
+ (bootloader-configuration
+ (bootloader grub-bootloader)))
+ (file-systems
+ (append
+ (list
+ (file-system
+ (mount-point "/")
+ (type "btrfs")
+ (device
+ (uuid "2c66de32-dde7-ea35-750a-a1ca47a58d45" 'btrfs))))
+ %base-file-systems)))