12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // Copyright (C) 2019-2023 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)
- }
|