Ransomware attackers specifically target and attempt to destroy backup systems to increase the probability of payment. Hardening your system is critical. Please ensure you have reviewed your platform security using the Security Hardening Checklist
Cohesity

COHESITY Documentation

Explore our documentation to get started, discover products & new features, access troubleshooting guides, register sources, platforms support.

Products
Data Security Alliance
Visit Cohesity.com
Demos
Support
Blogs
Developers
Partner Portals
Cohesity Community
© 2026 Cohesity, Inc. All Rights Reserved.
Terms of Use|
Privacy Policy|
Legal|
  1. Home
  2. Cohesity Cloud Scale Technology Manual Deployment Guide for Kubernetes Clusters
  3. Section I. Configurations
  4. Configuration of key parameters in Cloud Scale deployments
  5. Configuring email server
Cohesity Cloud Scale Technology Manual Deployment Guide for Kubernetes Clusters

Configuring email server

Mail server can be configured during NetBackup installation by including the name of the configMap in the emailServerConfigmapName field of the environment.Spec in helm/cloudscale/cloudscale-values.yaml file.

  • The configMap data must have entries in a key: value form to configure the mail server, as shown below for smtp field:

    emailServerConfigmap
    apiVersion: v1
    kind: ConfigMap
    metadata:
    name: configmail
    namespace: <netbackup-namespace>
    data:
      smtp: "xyz.abc.domain.com"
      smtp-use-starttls: ""
  • If there is a specific parameter that needs to be set only (not value), a key can only be specified with the smtp-use-starttls field.

Perform the following to modify the mail server settings:

  • Exec into the primary container using the following command:

    kubectl exec -it -n <namespace> <primaryServer-pod-name> -- bash

  • Update the persistent file at /mnt/nbdata/usr/openv/etc/mail.rc to set the fields as required.

If the emailServerConfigmapName field in the environment.Spec, is left empty (""), then the mail server would not be configured automatically as a part of NetBackup installation. In such case, the user will have to configure it manually post installation by performing the following steps:

  • Exec into the primary container using the following command:

    kubectl exec -it -n <namespace> <primaryServer-pod-name> -- bash

  • Execute the following commands in the primary container:

    mv /etc/mail.rc /mnt/nbdata/usr/openv/etc/mail.rc

    ln -nsf /mnt/nbdata/usr/openv/etc/mail.rc /etc/mail.rc

  • Update values for required fields at /mnt/nbdata/usr/openv/etc/mail.rc. An example of mail.rc file is shown below:

    mail.rc
    # mail server configuration
    set mail
    set mailserver=xyz.abc.domain.com:25
    set smtp-use-starttls

Feedback

Was this page helpful?
Previous

Enabling security settings

Next

Reducing catalog storage management

Feedback

Was this page helpful?