burger
infomaniak
infomaniak
cloud-computing-logo
Cloud Computing
web-domain-logo
Web & Domains
event-marketing-logo
Events & Marketing
  • Our products
    • Collaborative tools icon chevron
    • Web & Domains icon chevron
    • Cloud Computing icon chevron
    • Events & Marketing icon chevron
    • Streaming icon chevron

      ksuiteCollaborative suite

      Discover the collaborative suite → Discover →
    • kSuite Professional email, sovereign cloud and AI for sustainable performance
    • kSuite The suite for secure communication, storage and sharing
    • kdrive
      kDrive Store, collaborate and share your files
    • mail service
      Mail Service Create your email addresses with your domain
    • kChat
      kChat Communicate live with your teams
    • kmeet
      kMeet Organise your meetings online in complete security
    • swisstransfer
      SwissTransfer Send your files up to 50 GB free of charge.
    • kpaste
      kPaste Share and encrypt your sensitive information
    • ksuite
      Custom Brand Control the brand image of your products
    • kChat
      Chk Link reducer & QR code generator
      Find the web hosting solution you need
    • Domain name
      Domain name Reserve your domain name at the best price
    • Site Creator
      Site Creator Create your website with ease
    • web hosting
      Web Hosting Create your website with over 100 CMS
    • web hosting
      Wordpress Hosting Create your WordPress website easily
    • Cloud Server
      Cloud Server Power up your sites with guaranteed resources
    • SSL Certificat
      SSL certificates Secure your websites with an EV or DV certificate
    • Options
    • Domain privacy
      Domain Privacy Protect your domains’ private data
    • DNS Fast Anycast
      FastAnycast DNS Speed up your site access times
    • Dyn DNS
      DynDNS Access your devices remotely
    • Dyn DNS
      Renewal Warranty Secure your domains against loss and theft
      Find the right Cloud Computing solution

      Cloud services

    • public cloud
      Public Cloud (IaaS) Create your projects in a high-end, ultra-competitive Cloud
    • Cloud Server
      VPS Cloud Create a Windows / Linux server
    • Kubernetes service Deploy your containerised apps on a large scale.
    • VPS Lite
      VPS Lite Create a Windows/Linux server at a low cost
    • Database Service Manage your databases with a managed solution
    • jelastic cloud
      Jelastic Cloud (PaaS) Create your own customised environments
    • Other services

    • llm api
      AI Tools Boost your productivity with our sovereign AI
    • swiss backup
      Swiss Backup Back up your devices in the Cloud
    • nas synology
      NAS Synology Rent a NAS in our secure data centers
    • High availibility
      Very High Availability Create a multi-data center infrastructure with customised SLAs
    • Housing
      Housing Install your servers in our data centers
    • Auth Add a privacy-friendly login method to your apps
      Infomaniak Events, the independent local events portal
      Online ticketing service with a wide choice of concerts, shows and events.
    • online shop
      Ticketing Create your ticketing service and sell tickets
    • kdrive
      Access Control Control access to your events with ease
    • kdrive
      Guest manager Automate your event invitations
    • kdrive
      Newsletter Send your newsletters at competitive prices
    • Streaming radio
      Streaming radio Create and broadcast your own live radio station online
    • streaming video
      Video-Streaming Create and broadcast live events and TV online
    • VOD and AOD
      VOD & AOD service Host and broadcast your recordings without limits
  • Resources
    documentation icon Documentation
    Guides & tutorials
    API documentation
    special offers icon Special offers
    Get started for free
    Student programme
    Become an affiliate
    partner program icon Partner programme
    Find a partner
    Become a partner
    support icon Support & contact
    Contact Support
    Premium support - 24/7
    Contact our sales department
    Hiring an expert
    Migrate to Infomaniak
  • About us
    forest
    icon Ecological commitment
    We pollute. But we are taking action to reduce the footprint of our services and infrastructure
    Discover our commitment →
    icon About Infomaniak
    Our vision, our values
    Our teams
    Infomaniak is recruiting
    Press and communication
    Blog and news
    icon Security
    Data confidentiality
    Bug Bounty Programme
  • Get started for free
    Sign in
  • search-icon
    close-icon
      icon

      Would your needs exceed our solutions? To find out, contact us so that we can advise you personally.

      Our flagship products:
  • search-icon
  • Get started for free
    Sign in
Price Price
Knowledge base

1000 FAQs, 500 tutorials and explanatory videos. Here, there are only solutions!

Knowledge base Create discussion lists with Public Cloud

    Create discussion lists with Public Cloud

    This translation is out of date. Please see the French version for the most up-to-date information.

    This guide explains how to manually create a discussion list system with your Mail Service, this thanks to Mailman and Public Cloud Infomaniak!

     

    ⚠️ This guide is exclusively for users with advanced technical skills. No responsibility is assumed for damages or losses—back up your data before proceeding. For additional help, contact a partner or launch a free tender — also discover the role of the host.

     

    Preamble

    • Mailman is a free application for managing mailing lists, discussion lists, and newsletters.
    • These files are prepared so that you can easily set up Mailman.
    • The server and its firewall are deployed using TerraForm, an Infrastructure as a Code (IaaC) tool, and the server is configured with Ansible.
    • The software allows you to create discussion lists for your various contacts (direction@, ecommerce@…).

     

    Preparation…

    … of your environment

    • Have a Infomaniak Mail Service to complete this tutorial.
    • The files related to the deployment of Mailman on Public Cloud are to be downloaded from this Infomaniak GitHub.

    ... of the Mail Environment

    1. Create an address mailman@domain.xyz (help) and keep the created password safe (it will be used in the server configuration).
    2. Add the following aliases (help):
      • postorius
      • mylist
      • mylist-bounces
      • mylist-confirm
      • mylist-join
      • mylist-leave
      • mylist-owner
      • mylist-request
      • mylist-subscribe
      • mylist-unsubscribe

    Your Mail environment is ready for deployment!

    … of the Public Cloud

    1. First, create a Public Cloud project and 1 user (help)
      • Be careful with the Public Cloud password, 2FA authentication on your Infomaniak account is strongly recommended.
    2. Click here to access the Openstack dashboard and enter the PCU-XXXXXX with the password set previously.
    3. Download your openrc file, which allows you to identify yourself as an administrator of your environment from the command line; it contains information such as the datacenter where your machines are located, your identifier, password, etc.

    You now have the file you can use to connect to the Openstack administration.

    ... of the instance

    To make your future instance accessible on its various communication ports (SSH & HTTP & HTTPS), create a security group to assign a set of rules to a machine with the following command:

    openstack security group create —description "Port 22 - 80 - 443 pour Mailman" mailman-sec

    Add rules to the security group: mailman-sec

    openstack security group rule create --dst-port 80 --protocol TCP mailman-secopenstack security group rule create --dst-port 443 --protocol TCP mailman-secopenstack security group rule create --dst-port 22 --protocol TCP mailman-sec

    You can perform all of these commands graphically from the Horizon dashboard in the Network -> Security Group tab (refer to the cloud documentation for more information).

    Deploy the instance that will contain MailMan. For command line use, you can use the following command:

    openstack server create --flavor a1-ram2-disk20-perf1 --security-group mailman-sec --network ext-net1 --key-name <votre-clé> --image "Debian 11.5 bullseye" mailman3

    Once you are connected to the machine, update it:

    sudo apt update && sudo apt upgrade -y

    Install the openstack client:

    sudo apt install python3-openstackclient -y

    Installation of Ansible (allowing to deploy mailman automatically):

    sudo apt install ansible -y

     

    Deployment of Mailman

    To deploy Mailman on the machine, import the SSH key and your OpenRC file via SFTP into the machine running the Ansible configuration.

    Use software/clients like putty, termius, mobaxterm... (any tool that handles SSH / SFTP) to easily perform the import, you will just need to enter the following information to connect to the machine:

    • IP of the previously created machine
    • port: 22
    • previously created SSH key: import the .pem file
    • user: debian

    In this guide, the software Termius was used to transfer files via SFTP to the machine.

    Download the folder containing the installation files:

    wget https://github.com/reneluria/mailman-cloud 

    You must now move the SSH key and the PCP file into the downloaded folder:

    mv cle.pem mailman/mv PCP-XXXX.sh mailman/

    Navigate to the file:

    cd mailman/

    Set the permission 600 on the key to protect and execute it:

    sudo chmod 600 tf-keypair.pem

    Create a file inventory to define the parameters: SMTP, Domain…

    nano inventory

    You need to fill in this file with the following template, modifying the commented lines with your environment variables:

    mailman ansible_host = Public IP of the target VM

    mailman ansible_host=xxx.xxx.xxx.xxx
    [all:vars]
    ansible_python_interpreter=/usr/bin/python3
    ansible_user=debian
    ansible_ssh_private_key_file=id_tf_keypair
    fqdn=mailman.<yourdomain>
    mail_host=mail.infomaniak.com
    mail_account=mailman@<yourdomain>
    mail_password=<email_password>
    mailman_user=mailman
    mailman_password==<interface_password>
    mailman_domain=parano.ch
    mailman_email=<your_email>

    Run the command ctrl + s then ctrl + c to exit Nano.

    Still in the mailman directory, run the script with ansible:

    ansible-playbook playbook.yml -D

    Mailman is now deployed on your IP address: X.X.X.X/mailman3

     

    Log in

    Log in to mailman with the credentials provided in the inventory file mentioned above to then:

    • > Create a domain -> create my list "maliste"

    In the list of settings, change:

    • DMARC Attenuations: it is recommended to use "Replace from with the list address"
    • Modify messages: it is recommended to use "Reply to list" and "Reply to sender"


    Link to this FAQ:
    Has this FAQ been helpful?
    Thank you for your feedback. Improve this FAQ?
    Please do not ask any questions through this form, it is only used to improve our FAQ.
    Please use our contact form for any question.
    Your message has been sent. Thank you for suggesting an improvement to this FAQ.
    Display all FAQs for this product
    logo infomaniak
    Prices do not include VAT
    facebook
    twitter
    linkedin
    instagram

    Infomaniak

    About Infomaniak The team Infomaniak is recruiting Press space Infomaniak blog All certificates Products and offers Clients' opinions

    Support

    Assistance 7/7 FAQ and guides Premium Support Sales contact API REST Report abuse WHOIS Statuts Public Cloud Service status

    Partnerships

    Become a reseller Affiliate programme Directory of partners Requests for quotes

    Ecology

    Green hosting Certificates & awards

    Follow our development

    The email entered is invalid
    earth icon
    • EN
      • EN
      • DE
      • ES
      • FR
      • IT
    ©2025 Infomaniak - Legal documents - Legal notice - Data Protection - Privacy Policy - Site map - Manage your cookies
    icann-logo
    swiss
    new-iso
    swiss-hosting
    logo infomaniak
    Prices do not include VAT

    Infomaniak

    About Infomaniak The team Infomaniak is recruiting Press and media Infomaniak blog All certificates Products and offers Clients' opinions

    Support

    Assistance 7/7 FAQ and guides Premium Support offer Sales contact API REST Report abuse WHOIS Statuts Public Cloud Service status

    Partnerships

    Become a reseller Affiliate programme Directory of partners Requests for quotes

    Ecology

    Green hosting Certificates & awards

    Follow our development

    The email entered is invalid
    icann-logo
    swiss
    new-iso
    swiss-hosting

    facebook
    twitter
    linkedin
    instagram
    ©2025 Infomaniak
    Contracts - Legal notice - Data Protection - Privacy Policy - Site map - Manage your cookies

    Managers

    earth icon
    • EN
      • EN
      • DE
      • ES
      • FR
      • IT
    Your browser is outdated, security and browsability are no longer guaranteed. We recommend that you update it as soon as possible by clicking here.