mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
784b7585c1
so we don't have to update all the files every year Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
76 lines
2.6 KiB
Go
76 lines
2.6 KiB
Go
// Copyright (C) 2019 Nicola Murino
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published
|
|
// by the Free Software Foundation, version 3.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/rs/zerolog"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/drakkan/sftpgo/v2/internal/config"
|
|
"github.com/drakkan/sftpgo/v2/internal/dataprovider"
|
|
"github.com/drakkan/sftpgo/v2/internal/logger"
|
|
"github.com/drakkan/sftpgo/v2/internal/smtp"
|
|
"github.com/drakkan/sftpgo/v2/internal/util"
|
|
)
|
|
|
|
var (
|
|
smtpTestRecipient string
|
|
smtpTestCmd = &cobra.Command{
|
|
Use: "smtptest",
|
|
Short: "Test the SMTP configuration",
|
|
Long: `SFTPGo will try to send a test email to the specified recipient.
|
|
If the SMTP configuration is correct you should receive this email.`,
|
|
Run: func(_ *cobra.Command, _ []string) {
|
|
logger.DisableLogger()
|
|
logger.EnableConsoleLogger(zerolog.DebugLevel)
|
|
configDir = util.CleanDirInput(configDir)
|
|
err := config.LoadConfig(configDir, configFile)
|
|
if err != nil {
|
|
logger.ErrorToConsole("Unable to load configuration: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
providerConf := config.GetProviderConf()
|
|
err = dataprovider.Initialize(providerConf, configDir, false)
|
|
if err != nil {
|
|
logger.ErrorToConsole("error initializing data provider: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
smtpConfig := config.GetSMTPConfig()
|
|
smtpConfig.Debug = 1
|
|
err = smtpConfig.Initialize(configDir, false)
|
|
if err != nil {
|
|
logger.ErrorToConsole("unable to initialize SMTP configuration: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
err = smtp.SendEmail([]string{smtpTestRecipient}, nil, "SFTPGo - Testing Email Settings", "It appears your SFTPGo email is setup correctly!",
|
|
smtp.EmailContentTypeTextPlain)
|
|
if err != nil {
|
|
logger.WarnToConsole("Error sending email: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
logger.InfoToConsole("No errors were reported while sending the test email. Please check your inbox to make sure.")
|
|
},
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
addConfigFlags(smtpTestCmd)
|
|
smtpTestCmd.Flags().StringVar(&smtpTestRecipient, "recipient", "", `email address to send the test e-mail to`)
|
|
smtpTestCmd.MarkFlagRequired("recipient") //nolint:errcheck
|
|
|
|
rootCmd.AddCommand(smtpTestCmd)
|
|
}
|