summaryrefslogtreecommitdiff
path: root/src/modules/sortnull.c
blob: b58b420c71abd3e08a6fadc19510154fb6866a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* 

 Copyright (C) 1999-2004 Aaron Stone aaron at serendipity dot cx

 This program is free software; you can redistribute it and/or 
 modify it under the terms of the GNU General Public License 
 as published by the Free Software Foundation; either 
 version 2 of the License, or (at your option) any later 
 version.

 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.

 *
 * Functions for running user defined sorting rules
 * on a message in the temporary store, usually
 * just delivering the message to the user's INBOX
 * ...unless they have fancy rules defined, that is :-)
 * 
 */

#include "dbmail.h"
#define THIS_MODULE "sort"

const char * sort_listextensions(void)
{
	return "";
}

sort_result_t *sort_validate(u64_t user_idnr UNUSED, char *scriptname UNUSED)
{
	TRACE(TRACE_WARNING, "SIEVE sorting enabled in DELIVERY section of dbmail.conf,"
			" but this build of DBMail was statically configured without Sieve.");
	return NULL;
}

sort_result_t *sort_process(u64_t user_idnr UNUSED, DbmailMessage *message UNUSED)
{
	TRACE(TRACE_WARNING, "SIEVE sorting enabled in DELIVERY section of dbmail.conf,"
			" but this build of DBMail was statically configured without Sieve.");
	return NULL;
}

/* SORT RESULT INTERFACE */

void sort_free_result(sort_result_t *result UNUSED)
{
	return;
}

int sort_get_cancelkeep(sort_result_t *result UNUSED)
{
	return 0;
}

int sort_get_reject(sort_result_t *result UNUSED)
{
	return 0;
}

const char * sort_get_mailbox(sort_result_t *result UNUSED)
{
	return "";
}

const char * sort_get_errormsg(sort_result_t *result UNUSED)
{
	return "";
}

int sort_get_error(sort_result_t *result UNUSED)
{
	return 0;
}