mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Updated build system to use Qt5 instead of Qt4. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
		
			
				
	
	
		
			131 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// sendmail_test.cpp
 | 
						|
//
 | 
						|
// Test the Rivendell string encoder routines.
 | 
						|
//
 | 
						|
//   (C) Copyright 2013-2021 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 <QApplication>
 | 
						|
 | 
						|
#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;
 | 
						|
  QString body_file;
 | 
						|
  bool dry_run=false;
 | 
						|
  FILE *f=NULL;
 | 
						|
  QByteArray raw;
 | 
						|
  char data[1024];
 | 
						|
  size_t n;
 | 
						|
 | 
						|
  //
 | 
						|
  // Read Command Options
 | 
						|
  //
 | 
						|
  RDCmdSwitch *cmd=new RDCmdSwitch("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->key(i)=="--body-file") {
 | 
						|
      body_file=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",
 | 
						|
	      cmd->key(i).toUtf8().constData());
 | 
						|
      exit(RDApplication::ExitInvalidOption);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Sanity Checks
 | 
						|
  //
 | 
						|
  if((!body.isEmpty())&&(!body_file.isEmpty())) {
 | 
						|
    fprintf(stderr,
 | 
						|
	    "sendmail_test: --body and --body-file are mutually exclusive\n");
 | 
						|
    exit(RDApplication::ExitInvalidOption);
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Load Message Body
 | 
						|
  //
 | 
						|
  if(!body_file.isEmpty()) {
 | 
						|
    if((f=fopen(body_file.toUtf8(),"r"))==NULL) {
 | 
						|
      perror("sendmail_test");
 | 
						|
      exit(256);
 | 
						|
    }
 | 
						|
    while((n=fread(data,1,1024,f))>0) {
 | 
						|
      raw+=QByteArray(data,n);
 | 
						|
    }
 | 
						|
    fclose(f);
 | 
						|
    body=QString::fromUtf8(raw);
 | 
						|
  }
 | 
						|
 | 
						|
  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();
 | 
						|
}
 |