summaryrefslogtreecommitdiff
path: root/users/id1000.scm
blob: 0253061078a48c135cde6164475f77477f7d64d5 (about) (plain)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
(define-module (users id1000)
  ;; home-environment
  #:use-module (gnu home)

  ;; home-profile-service-type
  ;; home-xdg-configuration-files-service-type
  #:use-module (gnu home services)

  ;; gparted
  #:use-module (gnu packages disk)

  ;; emacs
  #:use-module (gnu packages emacs)

  ;; emacs-org-roam
  ;; emacs-paredit
  #:use-module (gnu packages emacs-xyz)

  ;; git
  #:use-module (gnu packages version-control)

  ;; simple-service
  #:use-module (gnu services)

  ;; user-account
  #:use-module (gnu system shadow)

  ;; local-file
  #:use-module (guix gexp)

  ;; %suweren-home-services
  #:use-module (suweren home))

(define aliases-file
  ((@ (guix gexp) mixed-text-file)
   "aliases"
   "@ vmail\n"))

(define blacklist-file
  ((@ (guix gexp) mixed-text-file)
   "blacklist"
   "@yahoo.com.cn\n"
   "@qq.com\n"
   "@fnac.com\n"
   "@just-aero.us\n"
   "@elitetorrent1.com\n"))

(define dovecot-imap-login-inet-configuration
  ((@ (gnu services mail) inet-listener-configuration)
   (address "192.168.10.2")
   (port 993)
   (protocol "imaps")))

(define dovecot-lmtp-inet-configuration
  ((@ (gnu services mail) inet-listener-configuration)
   (address "192.168.10.2 127.0.0.1")
   (port 24)
   (protocol "lmtp")))

(define dovecot-lmtp-unix-configuration
  ((@ (gnu services mail) unix-listener-configuration)
   (group "vmail")
   (mode "0666")
   (path "lmtp")
   (user "vmail")))

(define mailbox-marekpasnikowski-archive
  ((@ (gnu services mail) mailbox-configuration)
   (name "Archive")
   (auto "subscribe")
   (special-use (list "\\Archive"))))

(define mailbox-marekpasnikowski-drafts
  ((@ (gnu services mail) mailbox-configuration)
   (name "Drafts")
   (auto "subscribe")
   (special-use (list "\\Drafts"))))

(define mailbox-marekpasnikowski-junk
  ((@ (gnu services mail) mailbox-configuration)
   (name "Junk")
   (auto "subscribe")
   (special-use (list "\\Junk"))))

(define mailbox-marekpasnikowski-sent
  ((@ (gnu services mail) mailbox-configuration)
   (name "Sent")
   (auto "subscribe")
   (special-use (list "\\Sent"))))

(define mailbox-marekpasnikowski-trash
  ((@ (gnu services mail) mailbox-configuration)
   (name "Trash")
   (auto "subscribe")
   (special-use (list "\\Trash"))))

(define relays-file
  ((@ (guix gexp) mixed-text-file)
   "other-relays"
   "mx1.forwardemail.net\n"
   "mx2.forwardemail.net\n"))

(define smtpd-keys
  "/secrets/smtpd")

;;;

(define dovecot-imap
  ((@ (gnu services mail) protocol-configuration)
   (name "imap")))

(define dovecot-imap-login-configuration
  ((@ (gnu services mail) service-configuration)
   (kind "imap-login")
   (listeners (list dovecot-imap-login-inet-configuration))))

(define dovecot-lmtp
  ((@ (gnu services mail) protocol-configuration)
   (name "lmtp")))

(define dovecot-lmtp-configuration
  ((@ (gnu services mail) service-configuration)
   (kind "lmtp")
   (listeners (list dovecot-lmtp-inet-configuration
		    dovecot-lmtp-unix-configuration))))

(define dovecot-passwd-file
  ((@ (gnu services mail) passdb-configuration)
   (args (list "username_format=%n"
	       "/secrets/dovecot"))
   (driver "passwd-file")))

(define dovecot-namespace-marekpasnikowski
  ((@ (gnu services mail) namespace-configuration)
   (name "inbox")
   (inbox? #t)
   (mailboxes (list mailbox-marekpasnikowski-archive
		    mailbox-marekpasnikowski-drafts
		    mailbox-marekpasnikowski-junk
		    mailbox-marekpasnikowski-sent
		    mailbox-marekpasnikowski-trash))))

(define dovecot-userdb-static-configuration
  ((@ (gnu services mail) userdb-configuration)
   (args (list "gid=vmail"
	       "home=/home/vmail/%n"
	       "uid=vmail"))
   (driver "static")))

(define (opensmtpd-config interface
			  domain)
  ((@ (guix gexp) mixed-text-file)
   "smtpd.conf"
   "# This is the smtpd server system-wide configuration file.\n"
   "# See smtpd.conf(5) for more information.\n"
   "\n"
   "# My TLS certificate and key\n"
   "pki marekpasnikowski.pl cert \"/etc/letsencrypt/live/" domain "/fullchain.pem\"\n"
   "pki marekpasnikowski.pl key \"/etc/letsencrypt/live/" domain "/privkey.pem\"\n"
   "\n"
   "# Edit this file to add add more virtual users (passwords are read in that file\n"
   "# instead of /etc/passwd\n"
   "table passwd file:" smtpd-keys "\n"
   "\n"
   "table other-relays file:" relays-file "\n"
   "table blacklist file:" blacklist-file "\n"
   "\n"
   "# A simple spam filter\n"
   "# filter spam-filter phase mail-from match mail-from <blacklist> reject \"555\"\n"
   "\n"
   "# port 25 is used only for receiving from external servers, and they may start\n"
   "# a TLS session if they want.\n"
   "listen on " interface " port 25 # tls pki marekpasnikowski.pl filter spam-filter\n"
   "\n"
   "# For sending messages from outside of this server, you need to authenticate and\n"
   "# use TLS.\n"
   "listen on " interface " port 465 smtps pki marekpasnikowski.pl mask-src auth <passwd>\n"
   "\n"
   "# Localhost is used by the .onion, so we use the same configuration for \n"
   "# local connections."
   "listen on lo port 25 tls pki marekpasnikowski.pl filter spam-filter\n"
   "# Since incoming connection uses tor, we don't need tls, but still require\n"
   "# authentication; we're not a relay\n"
   "# listen on lo port 587 tls pki marekpasnikowski.pl mask-src auth <passwd>\n"
   "\n"
   "# DKIMproxy\n"
   "listen on lo port 10028 tag DKIM_OUT\n"
   "\n"
   "# The socket is considered an internal connection\n"
   "listen on socket mask-src\n"
   "\n"
   "# Maybe it'll work better if we connect to gmail only with v4?\n"
   "# limit mta for domain gmail.com inet4\n"
   "\n"
   "# TODO: manage these files directly in the configuration?\n"
   "# If you edit the file, you have to run \"smtpctl update table aliases\"\n"
   "table aliases file:" aliases-file "\n"
   "\n"
   "# We define some actions\n"
   "action receive lmtp \"/var/run/dovecot/lmtp\" rcpt-to virtual <aliases>\n"
   "action outbound relay helo \"" domain "\"\n"
   "action godkim relay host smtp://127.0.0.1:10027\n"
   "\n"
   "# We accept to relay any mail from authenticated users\n"
   "match for any from any auth action godkim\n"
   "match tag DKIM_OUT for any action outbound\n"
   "\n"
   "# Then, we reject on some other conditions:\n"
   "\n"
   "# If the mail tries to impersonate us\n"
   "# match !from src <other-relays> mail-from \"@marekpasnikowski.pl\" for any reject\n"
   "\n"
   "# If it comes from someone on the blacklist\n"
   "match from any mail-from <blacklist> reject\n"
   "\n"
   "# Finally, if we accept incoming messages\n"
   "match from any for domain \"marekpasnikowski.pl\" action receive\n"
   "match for local action receive\n" ))

(define ssl-cert-path
  (string-append "</etc/letsencrypt/live/"
		 "marekpasnikowski.pl"
		 "/fullchain.pem"))

(define ssl-key-path
  (string-append "</etc/letsencrypt/live/"
		 "marekpasnikowski.pl"
		 "/privkey.pem"))

;;;

(define dovecot-configuration*
  ((@ (gnu services mail) dovecot-configuration)
   (disable-plaintext-auth? #t)
   (mail-location "maildir:~/Maildir")
   (namespaces (list dovecot-namespace-marekpasnikowski))
   (passdbs (list dovecot-passwd-file))
   (protocols (list dovecot-imap
		    dovecot-lmtp))
   (services (list dovecot-lmtp-configuration
		   dovecot-imap-login-configuration))
   (ssl? "required")
   (ssl-cert ssl-cert-path)
   (ssl-key ssl-key-path)
   (ssl-min-protocol "TLSv1.2")
   (userdbs (list dovecot-userdb-static-configuration))))

(define groups
  (list "kvm"
	"wheel"))

(define opensmtpd-configuration*
  ((@ (gnu services mail) opensmtpd-configuration)
   (config-file (opensmtpd-config "enp1s0"
				  "marekpasnikowski.pl"))))

;;;

(define-public dovecot-service
  (service (@ (gnu services mail) dovecot-service-type)
	   dovecot-configuration*))

(define-public smtp-service
  (service (@ (gnu services mail) opensmtpd-service-type)
	   opensmtpd-configuration*))

(define-public uid1000-name
  "marek")

(define-public uid1000-account
  (user-account (name uid1000-name)
		(group "users")
		(supplementary-groups groups)
		(uid 1000)
		(comment "Marek Paśnikowski")
		(home-directory "/home/marek")))

(define-public uid1000-home-environment
  (lambda (host-name*)
    (let* ((gitconfig-file (local-file "uid1000-gitconfig")) ; TODO modularize
	   (gitignore-file (local-file "uid1000-gitignore")) ; TODO review the contents

	   (gitconfig (list "git/config"
			    gitconfig-file))
	   (gitignore (list "git/ignore"
			    gitignore-file))

	   (emacs-packages (list emacs
				 emacs-org-roam
				 emacs-paredit))
	   (git-configuration-files (list gitconfig
					  gitignore))
	   (git-packages (list git))
	   (packages (list gparted))

	   (emacs-software (simple-service 'emacs-packages
					   home-profile-service-type
					   emacs-packages))
	   (git-configuration (simple-service 'git-configuration
					      home-xdg-configuration-files-service-type
					      git-configuration-files))
	   (git-software (simple-service 'git-packages
					 home-profile-service-type
					 git-packages))
	   (profile (simple-service 'user-packages
				    home-profile-service-type
				    packages))

	   (%suweren-home-services* (%suweren-home-services host-name*))
	   (user-services (list emacs-software
				git-configuration
				git-software
				profile))

	   (services* (append %suweren-home-services*
			      user-services)))
      (home-environment (services services*)))))