This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mailhog | |
MAIL_MAILER=smtp | |
MAIL_HOST=0.0.0.0 | |
MAIL_PORT=1025 | |
MAIL_USERNAME=null | |
MAIL_PASSWORD=null | |
MAIL_ENCRYPTION=null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# DO NOT MOVE THIS FILE, KEEP IN ROOT OF APPLICATION | |
# | |
# This file should be called by a Cron job every 5 minutes. | |
# It will call the Cron Queue and starts processing. | |
# Each call also checks if processing is already in progress | |
# (in case of a gigantic queue) and starts a new 'worker' with a maximum of 3. | |
# Command to call |