mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-12 15:52:29 +02:00
* Added an 'RDSendMail()' function in 'lib/rdsendmail.[cpp|h]'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
98 lines
2.5 KiB
C++
98 lines
2.5 KiB
C++
// sendmail_test.cpp
|
|
//
|
|
// Test the Rivendell string encoder routines.
|
|
//
|
|
// (C) Copyright 2013,2016 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// 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 <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include <qapplication.h>
|
|
#include <qvariant.h>
|
|
|
|
#include <rdapplication.h>
|
|
#include <rdcmd_switch.h>
|
|
#include <rdsendmail.h>
|
|
#include <rdweb.h>
|
|
|
|
#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;
|
|
|
|
//
|
|
// Read Command Options
|
|
//
|
|
RDCmdSwitch *cmd=
|
|
new RDCmdSwitch(qApp->argc(),qApp->argv(),"sendmail_test",
|
|
SENDMAIL_TEST_USAGE);
|
|
for(unsigned i=0;i<cmd->keys();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->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)) {
|
|
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();
|
|
}
|