Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions include/email.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ struct addr {
typedef enum { GPG_SIG=0x01, GPG_ENC=0x02 } GpgCallType;


/* Globally defined vars */
dhash table;
char *conf_file;
/* Globally declared vars */
extern dhash table;
extern char *conf_file;

struct mailer_options {
extern struct mailer_options {
bool verbose;
bool encoding;
short html;
Expand Down
5 changes: 5 additions & 0 deletions src/email.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
#include "error.h"
#include "mimeutils.h"

/* Globally defined vars */
dhash table;
char *conf_file;
struct mailer_options Mopts;

static void
defaultDestr(void *ptr)
{
Expand Down