// sendmail_test.cpp // // Test the Rivendell string encoder routines. // // (C) Copyright 2013,2016 Fred Gleason // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // 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 General Public License for more details. // // You should have received a copy of the GNU General Public // License along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // #include #include #include #include #include #include #include #include #include "sendmail_test.h" MainObject::MainObject(QObject *parent) :QObject(parent) { QString err_msg; QString from_addr; QString to_addrs; QString cc_addrs; QString bcc_addrs; QString subject; QString body; bool dry_run=false; // // Read Command Options // RDCmdSwitch *cmd= new RDCmdSwitch(qApp->argc(),qApp->argv(),"sendmail_test", SENDMAIL_TEST_USAGE); for(unsigned i=0;ikeys();i++) { if(cmd->key(i)=="--from-addr") { from_addr=cmd->value(i); cmd->setProcessed(i,true); } if(cmd->key(i)=="--to-addrs") { to_addrs=cmd->value(i); cmd->setProcessed(i,true); } if(cmd->key(i)=="--cc-addrs") { cc_addrs=cmd->value(i); cmd->setProcessed(i,true); } if(cmd->key(i)=="--bcc-addrs") { bcc_addrs=cmd->value(i); cmd->setProcessed(i,true); } if(cmd->key(i)=="--subject") { subject=cmd->value(i); cmd->setProcessed(i,true); } if(cmd->key(i)=="--body") { body=cmd->value(i); cmd->setProcessed(i,true); } if(cmd->key(i)=="--dry-run") { dry_run=true; cmd->setProcessed(i,true); } if(!cmd->processed(i)) { fprintf(stderr,"sendmail_test: unknown option \"%s\"\n", (const char *)cmd->key(i)); exit(RDApplication::ExitInvalidOption); } } if(!RDSendMail(&err_msg,subject,body, from_addr,to_addrs,cc_addrs,bcc_addrs,dry_run)) { fprintf(stderr,"%s\n",err_msg.toUtf8().constData()); exit(256); } exit(RDApplication::ExitOk); } int main(int argc,char *argv[]) { QApplication a(argc,argv,false); new MainObject(); return a.exec(); }