--- # Mail-in-a-Box deployment — native installer script # MIAB manages its own nginx, TLS, DNS, and mail stack - name: Deploy Mail-in-a-Box Email Server hosts: all become: true vars: miab_domain: "{{ domain }}" miab_first_user: "{{ email_first_user }}" target_host: "{{ target_host | default('localhost') }}" tasks: - name: Include Mail-in-a-Box installation include_tasks: tasks/install.yml - name: Include Mail-in-a-Box configuration include_tasks: tasks/configure.yml