+node.normal_unless[:mailman][:subscribe_form_secret] = SecureRandom.base64(48)
+
+template "/etc/mailman/mm_cfg.py" do
+ source "mm_cfg.py.erb"
+ user "root"
+ group "root"
+ mode 0o644
+ notifies :restart, "service[mailman]"
+end
+
+execute "newlist" do
+ command "newlist -q mailman mailman@example.com mailman"
+ user "root"
+ group "root"
+ not_if { ::File.exist?("/var/lib/mailman/lists/mailman/") }
+end
+