xref: /freebsd/contrib/sendmail/libmilter/docs/xxfi_unknown.html (revision 4313cc83440a39bdf976f955b1d4d3f3c4d1552f)
1d0cef73dSGregory Neil Shapiro<HTML>
2d0cef73dSGregory Neil Shapiro<HEAD><TITLE>xxfi_unknown</TITLE></HEAD>
3d0cef73dSGregory Neil Shapiro<BODY>
4d0cef73dSGregory Neil Shapiro<!--
5*4313cc83SGregory Neil Shapiro$Id: xxfi_unknown.html,v 1.5 2013-11-22 20:51:39 ca Exp $
6d0cef73dSGregory Neil Shapiro-->
7d0cef73dSGregory Neil Shapiro<H1>xxfi_unknown</H1>
8d0cef73dSGregory Neil Shapiro
9d0cef73dSGregory Neil Shapiro<TABLE border="0" cellspacing=4 cellpadding=4>
10d0cef73dSGregory Neil Shapiro<!---------- Synopsis ----------->
11d0cef73dSGregory Neil Shapiro<TR><TH valign="top" align=left width=100>SYNOPSIS</TH><TD>
12d0cef73dSGregory Neil Shapiro<PRE>
13d0cef73dSGregory Neil Shapiro#include &lt;libmilter/mfapi.h&gt;
14d0cef73dSGregory Neil Shapirosfsistat (*xxfi_unknown)(
15d0cef73dSGregory Neil Shapiro	SMFICTX *ctx,
16d0cef73dSGregory Neil Shapiro	const char *arg
17d0cef73dSGregory Neil Shapiro);
18d0cef73dSGregory Neil Shapiro</PRE>
19d0cef73dSGregory Neil ShapiroHandle unknown and unimplemented SMTP commands.
20d0cef73dSGregory Neil Shapiro</TD></TR>
21d0cef73dSGregory Neil Shapiro
22d0cef73dSGregory Neil Shapiro<!----------- Description ---------->
23d0cef73dSGregory Neil Shapiro<TR><TH valign="top" align=left>DESCRIPTION</TH><TD>
24d0cef73dSGregory Neil Shapiro<TABLE border="1" cellspacing=1 cellpadding=4>
25d0cef73dSGregory Neil Shapiro<TR align="left" valign=top>
26d0cef73dSGregory Neil Shapiro<TH width="80">Called When</TH>
27d0cef73dSGregory Neil Shapiro<TD>xxfi_unknown is called when the client uses an SMTP command
28d0cef73dSGregory Neil Shapirothat is either unknown or not implemented by the MTA.
29d0cef73dSGregory Neil Shapiro</TR>
30d0cef73dSGregory Neil Shapiro<TR align="left" valign=top>
31d0cef73dSGregory Neil Shapiro<TH>Default Behavior</TH>
32d0cef73dSGregory Neil Shapiro<TD>Do nothing; return SMFIS_CONTINUE.</TD>
33d0cef73dSGregory Neil Shapiro</TR>
34d0cef73dSGregory Neil Shapiro</TABLE>
35d0cef73dSGregory Neil Shapiro
36d0cef73dSGregory Neil Shapiro<!----------- Arguments ---------->
37d0cef73dSGregory Neil Shapiro<TR><TH valign="top" align=left>ARGUMENTS</TH><TD>
38d0cef73dSGregory Neil Shapiro    <TABLE border="1" cellspacing=0>
39d0cef73dSGregory Neil Shapiro    <TR bgcolor="#dddddd"><TH>Argument</TH><TH>Description</TH></TR>
40d0cef73dSGregory Neil Shapiro    <TR valign="top"><TD>ctx</TD>
41d0cef73dSGregory Neil Shapiro	<TD>Opaque context structure.
42d0cef73dSGregory Neil Shapiro	</TD></TR>
43d0cef73dSGregory Neil Shapiro    <TR valign="top"><TD>arg</TD>
44d0cef73dSGregory Neil Shapiro	<TD>SMTP command including all arguments.
45d0cef73dSGregory Neil Shapiro	</TD></TR>
46d0cef73dSGregory Neil Shapiro    </TABLE>
47d0cef73dSGregory Neil Shapiro</TD></TR>
48d0cef73dSGregory Neil Shapiro
49d0cef73dSGregory Neil Shapiro<!----------- Return values ---------->
50d0cef73dSGregory Neil Shapiro<TR>
51d0cef73dSGregory Neil Shapiro<TH valign="top" align=left>SPECIAL RETURN VALUES</TH>
52d0cef73dSGregory Neil Shapiro<TD><TABLE border="1" cellspacing=0>
53d0cef73dSGregory Neil Shapiro  <TR bgcolor="#dddddd"><TH>Return value</TH><TH>Description</TH></TR>
54d0cef73dSGregory Neil Shapiro  <TR valign="top">
55d0cef73dSGregory Neil Shapiro     <TD>SMFIS_TEMPFAIL</TD>
56ffb83623SGregory Neil Shapiro     <TD>Reject this command with a temporary error.
57d0cef73dSGregory Neil Shapiro     </TD>
58d0cef73dSGregory Neil Shapiro  </TR>
59d0cef73dSGregory Neil Shapiro  <TR valign="top">
60d0cef73dSGregory Neil Shapiro     <TD>SMFIS_REJECT</TD>
61ffb83623SGregory Neil Shapiro     <TD>Reject this command.
62d0cef73dSGregory Neil Shapiro     </TD>
63d0cef73dSGregory Neil Shapiro  </TR>
64d0cef73dSGregory Neil Shapiro</TABLE>
65d0cef73dSGregory Neil Shapiro</TR>
66d0cef73dSGregory Neil Shapiro
67d0cef73dSGregory Neil Shapiro<!----------- Notes ---------->
68d0cef73dSGregory Neil Shapiro<TR>
69d0cef73dSGregory Neil Shapiro<TH valign="top" align=left>NOTES</TH>
70d0cef73dSGregory Neil Shapiro<TD>The SMTP command will always be rejected by the server,
71d0cef73dSGregory Neil Shapiroit is only possible to return a different error code.
72d0cef73dSGregory Neil Shapiro</TR>
73d0cef73dSGregory Neil Shapiro</TABLE>
74d0cef73dSGregory Neil Shapiro
75d0cef73dSGregory Neil Shapiro<HR size="1">
76d0cef73dSGregory Neil Shapiro<FONT size="-1">
775dd76dd0SGregory Neil ShapiroCopyright (c) 2006 Proofpoint, Inc. and its suppliers.
78d0cef73dSGregory Neil ShapiroAll rights reserved.
79d0cef73dSGregory Neil Shapiro<BR>
80d0cef73dSGregory Neil ShapiroBy using this file, you agree to the terms and conditions set
81d0cef73dSGregory Neil Shapiroforth in the LICENSE.
82d0cef73dSGregory Neil Shapiro</FONT>
83d0cef73dSGregory Neil Shapiro</BODY>
84d0cef73dSGregory Neil Shapiro</HTML>
85