Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

156 total results found

System Status

Hermes SEG Administrator Guide System

System Status displays the following information: Version Build Edition Uptime System IP License Status (Hermes SEG Pro Only) If system needs to be rebooted to install OS Updates If there is a Hermes SEG Update (Hermes SEG Pro Only) CPU Utilization ...

Mail Queue

Hermes SEG Administrator Guide System

In this page, you can adjust the the Bounce and Max Queue Lifetime settings, Flush Mail Queue, View Messages, Requeue Messages, Hold Message, Delete Messages and Search Messages.  Normally, the Mail Queue should be empty, since the SMTP server should deliver ...

System Logs

Hermes SEG Administrator Guide System

System Logs allows you to set the Log Retention period, fetch system logs by date range/time and search.  Log Retention By default Hermes SEG stores logs up to 30 days before automatically purging older entries. This setting can be adjusted by selecting 30 D...

System Backup and Restore

Hermes SEG Administrator Guide System

System Backup and System Restore are configured and ran in the CLI as root. There is a Backup script located at /opt/hermes/scripts/system_backup.sh and a Restore script located at /opt/hermes/scripts/system_restore.sh. These scripts should not be moved/copied...

Message History

Hermes SEG Administrator Guide Content Checks

Hermes SEG keeps a log and a copy of each email message it sends and receives for archiving purposes. The number of log entries and actual messages the system keeps depends on the amount of storage space available on the system. The system automatically st...

Email Archive

Hermes SEG Administrator Guide System

In this section will be able to configure a scheduled archive jobs for your Hermes SEG. An Email Archive Job will create a separate email archive on external storage by creating a directory named /mnt on that share, copying all the emails stored on the applia...

System Update

Hermes SEG Administrator Guide System

NOTE: This feature is only available with Hermes SEG Pro License. System Update allows you to check, download and install Hermes SEG Updates. Hermes SEG updates should not be confused with Hermes SEG OS updates. Hermes SEG updates are installed in order of ...

System Reboot & Shutdown

Hermes SEG Administrator Guide System

Reboot System Click on the Reboot System button and wait for the system to finish the reboot process (Figure 1). Figure 1 Shutdown System Click on the Shutdown System button. Please note that manual intervention will be required in order to turn th...

SMTP TLS Settings

Hermes SEG Administrator Guide Gateway

It's important to set SMTP TLS in order to transmit e-mail messages between your Hermes SEG machine and other e-mail servers with TLS encryption. By default, SMTP TLS support in Hermes SEG is disabled. In this section you can enable Hermes SEG TLS support as ...

Relay Host

Hermes SEG Administrator Guide Gateway

Normally, Hermes SEG delivers email directly to remote SMTP hosts over the Internet. Sometimes, this configuration may not work for certain scenarios. For example, your ISP may not allow outbound SMTP over port TCP/25. In those scenarios it is necessary to co...

Relay Domains

Hermes SEG Administrator Guide Gateway

In order for Hermes SEG to deliver email, you must first set the domain(s) that Hermes SEG will process email for along with their corresponding email server(s). You can add as many domains and email servers as required. An email server can be configured as an...

Relay IPs & Networks

Hermes SEG Administrator Guide Gateway

In this section, you can add which individual IPs or networks will be allowed to send (relay) email through Hermes SEG. Best security practice is to never allow entire networks to send email through Hermes SEG and instead only allow specific IPs. Add Relay I...

Commandbox Install in Windows

Commandbox

Download CommandBox from https://www.ortussolutions.com/products/commandbox Extract downloaded zip to directory of your choice (Ex: c:\commandbox) Ensure you have Java installed (Amazon Coretto at https://docs.aws.amazon.com/corretto/latest/corre...

Commandbox Commands

Commandbox

Install Coldbox MVC and Deploy App box mkdir /opt/hermes/webapps/Coldbox-Hermes cd /opt/hermes/webapps/Coldbox-Hermes box install coldbox box coldbox create app HermesSEG Start Server Arguments: Numeric port (port number) String host (bind to a host/ip)...

How to Create VMFS Datastore on Vmware OS bootdrive

Vmware

Normally a vmfs partition is already created by ESXi on the boot drive. You can verify by going logging into the ESX Web GUI and navigating to Storage --> Devices --> Boot disk (Figure 1). Figure 1 Clicking on the drive will show the Partition diagram of t...

HTTP Redirect Using Traefik Reverse Proxy

Traefik

Enter the following code in the data/traefik_conf.yaml: http: routers: svcname: entryPoints: - "http" rule: "Host(`host.domain.tld`)" middlewares: - "svcname-https-redirect" service: svcname svcna...

Sync Time from External Time Source

Active Directory

By default, all machines in the domain will sync time from the domain controller which is the internal time server - if you have more than one DC then time will sync from the DC that holds the PDC emulator FSMO role. To check which DC is PDC emulator in your d...

Deluge Auto Extract Torrents Settings

Cord Cutting

Create a Deluge directory structure as follows: deluge --> incoming (for in-progress downloads) --> complete (for completed downloads) --> torrent (for manual torrents) Under Deluge --> Preferences --> Downloads --> Download to set it to your "incom...

extract.sh

Cord Cutting

#!/bin/bash formats=(zip rar) commands=([zip]="unzip -u" [rar]="unrar -o- e") extraction_subdir='' torrentid=$1 torrentname=$2 torrentpath=$3 log() { logger -t deluge-extractarchives "$@" } log "Torrent complete: $@" cd "${torrentpath}" ...

Determining and Clearing Container Disk Usage in Overlay2

Docker

Show disk usage using docker df: docker system df Should output similar to below: TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 23 22 11.15GB ...