Searched refs:state (Results 1 - 7 of 7) sorted by relevance
/sendmail/contrib/ |
H A D | bounce-resender.pl | 24 $state = "MSG_START"; 55 sub ignorance { $ignored{$state}++; } 89 if ($state eq "IN_MESSAGE_HEADER") { 120 if ($state eq "WAIT_FOR_FROM") { 122 $state = "MSG_START"; 126 } elsif ($state eq "MSG_START") { 129 $state = "GOT_BOUNDARY"; 134 } elsif ($state eq "GOT_BOUNDARY") { 147 $state = "IN_MESSAGE_HEADER"; 164 } elsif ($state e [all...] |
/sendmail/sendmail/ |
H A D | savemail.c | 44 /* defines for state machine */ 61 int state; local 105 ** Basic state machine. 120 /* determine starting state */ 124 state = ESM_REPORT; 129 state = ESM_MAIL; 134 state = ESM_QUIET; 144 state = ESM_MAIL; 157 state = ESM_POSTMASTER; 160 while (state ! [all...] |
H A D | milter.c | 78 # define SMFS_ERROR 'E' /* error state */ 92 if (*state == SMFIR_REPLYCODE || \ 93 *state == SMFIR_REJECT || \ 94 *state == SMFIR_DISCARD || \ 95 *state == SMFIR_TEMPFAIL) \ 101 /* set state in case of an error */ 104 *state = SMFIR_TEMPFAIL; \ 106 *state = SMFIR_SHUTDOWN; \ 108 *state = SMFIR_REJECT 1057 sm_dprintf("Milter (%s): Trying to open filter in state [all...] |
H A D | srvrsmtp.c | 241 #define CMDRSET 4 /* rset -- reset state */ 379 switch (state) \ 465 /* clear all SMTP state (for HELO/EHLO/RSET) */ 919 char state; local 922 smtp.sm_milterlist = milter_init(e, &state, &smtp.sm_milters); 923 switch (state) 961 char state; local 968 response = milter_connect(q, RealHostAddr, e, &state); 969 switch (state) 2150 char state; local 2517 char state; local 2766 char state; local 2850 char state; local 3279 char state; local 3381 char state; local 3505 char state; local [all...] |
H A D | parseaddr.c | 485 #define TYPE 017 /* mask to select state type */ 679 int state; local 723 state = ATM; 777 else if (state == QST) 797 else if (c == delim && cmntcnt <= 0 && state != QST) 812 sm_dprintf("c=%c, s=%d; ", c, state); 826 else if (c != '!' || state == QST) 840 else if (state == QST) 898 if (c == delim && anglecnt <= 0 && state != QST) 901 newstate = StateTab[state][tokta [all...] |
H A D | usersmtp.c | 72 int state; local 94 state = mci->mci_state; 95 switch (state) 117 syserr("451 4.4.0 smtpinit: state CLOSED (was %d)", state); 2983 ** The standard does not state the proper action 2998 ** SMTPPROBE -- check the connection state 3162 /* if debugging, pause so we can see state */
|
/sendmail/libmilter/ |
H A D | engine.c | 36 int cm_next; /* next state */ 124 #define ST_INIT 0 /* initial state */ 139 #define ST_LAST ST_Q_NC /* last valid state */ 140 #define ST_SKIP 16 /* not a state but required for the state table */ 147 ** each state (ST_*) corresponds to bit in an int value (1 << state) 148 ** each state has a set of allowed transitions ('or' of bits of states) 149 ** so a state transition is valid if the mask of the next state [all...] |
Completed in 1840 milliseconds