1#ifndef LWIP_HDR_APPS_SMTP_OPTS_H
2#define LWIP_HDR_APPS_SMTP_OPTS_H
24#define SMTP_DEBUG LWIP_DBG_OFF
28#ifndef SMTP_MAX_SERVERNAME_LEN
29#define SMTP_MAX_SERVERNAME_LEN 256
33#ifndef SMTP_MAX_USERNAME_LEN
34#define SMTP_MAX_USERNAME_LEN 32
38#ifndef SMTP_MAX_PASS_LEN
39#define SMTP_MAX_PASS_LEN 32
44#ifndef SMTP_COPY_AUTHDATA
45#define SMTP_COPY_AUTHDATA 1
52#ifndef SMTP_CHECK_DATA
53#define SMTP_CHECK_DATA 1
57#ifndef SMTP_SUPPORT_AUTH_PLAIN
58#define SMTP_SUPPORT_AUTH_PLAIN 1
62#ifndef SMTP_SUPPORT_AUTH_LOGIN
63#define SMTP_SUPPORT_AUTH_LOGIN 1
67#ifndef SMTP_STATE_MALLOC
68#define SMTP_STATE_MALLOC(size) mem_malloc(size)
69#define SMTP_STATE_FREE(ptr) mem_free(ptr)