FortiSOAR Knowledge Base
FortiSOAR: Security Orchestration and Response software provides innovative case management, automation, and orchestration. It pulls together all of an organization's tools, helps unify operations, and reduce alert fatigue, context switching, and the mean time to respond to incidents.
Andy_G
Staff
Staff
Article Id 197674
Description

Issue

SMTP Connector not working post configuration settings. There may be a case where the connector is not showing available during the health check after all the necessary configurations made.




Root Cause:

Postfix service is not running. This service has to be up and running whenever we need SMTP connector to work.


ssh to the box where CyOPs is hosted and 

Use “systemctl status postfix” to check whether the service is up.


postfix.service - Postfix Mail Transport Agent

   Loaded: loaded (/usr/lib/systemd/system/postfix.service; enabled; vendor preset: disabled)

   Active: inactive (dead) since Tue 2018-07-31 08:10:58 UTC; 1s ago

  Process: 3155 ExecStop=/usr/sbin/postfix stop (code=exited, status=0/SUCCESS)

  Process: 1298 ExecStart=/usr/sbin/postfix start (code=exited, status=0/SUCCESS)

  Process: 1287 ExecStartPre=/usr/libexec/postfix/chroot-update (code=exited, status=0/SUCCESS)

  Process: 1205 ExecStartPre=/usr/libexec/postfix/aliasesdb (code=exited, status=0/SUCCESS)

 Main PID: 1807 (code=killed, signal=TERM)


Solution

Fix:

Bring up the postfix service by firing the below command when you ssh to the box where the CyOPs running.


“systemctl start postfix”


Later use “systemctl status postfix” to check whether the service is up.


● postfix.service - Postfix Mail Transport Agent

   Loaded: loaded (/usr/lib/systemd/system/postfix.service; enabled; vendor preset: disabled)

   Active: active (running) since Tue 2018-07-31 08:12:49 UTC; 2s ago

  Process: 3155 ExecStop=/usr/sbin/postfix stop (code=exited, status=0/SUCCESS)

  Process: 3310 ExecStart=/usr/sbin/postfix start (code=exited, status=0/SUCCESS)

  Process: 3308 ExecStartPre=/usr/libexec/postfix/chroot-update (code=exited, status=0/SUCCESS)

  Process: 3306 ExecStartPre=/usr/libexec/postfix/aliasesdb (code=exited, status=0/SUCCESS)

 Main PID: 3382 (master)

   CGroup: /system.slice/postfix.service

           ├─3382 /usr/libexec/postfix/master -w

           ├─3383 pickup -l -t unix -u

           └─3384 qmgr -l -t unix -u


Found in Version:

4.11 and previous


Contributors