Maildoll
  • Getting Started
  • Installation
    • Requirements
    • Installation with Apache
    • Shared Hosting Install
    • Installing Maildoll
  • FAQs
    • Authentication
    • Language
    • Currency
    • Terminal CLI
    • Artisan GUI
    • Bounce Checker
    • Email Contacts
    • Group
    • Campaign
  • Setup
    • SMTP Setup
    • SMS Setup
    • Payment Setup
    • Frontend Setup
    • Seo Setup
    • Organization Setup
  • Usage
    • Campaign
    • Limit Manager
    • Important Notes
    • Subscription Plan
    • Template Builder
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Installation

Installation with Apache

Before installing, make sure mod_rewrite is enabled.

Unzip the source file

cd /home/user

unzip maildoll.zip

/home/user/maildoll, you can configure Apache virtual host as follows (remember to point the DocumentRoot to the public folder of the source)

<VirtualHost *:80>
	ServerName yoursite.com
	DocumentRoot "/home/user/maildoll/public"
	Options Indexes FollowSymLinks
	<Directory "/home/user/maildoll/public">
		AllowOverride All
		Require all granted
	</Directory>
</VirtualHost>

Change the director/file’s owner to Apache’s running user (www-data for example), to make sure it has proper permission on your source files

sudo chown www-data:www-data -R /home/user/maildoll

sudo chmod 775 -R /home/user/maildoll

PreviousRequirementsNextShared Hosting Install

Last updated 4 years ago

Was this helpful?