summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/base/public/nsISpamSettings.idl
blob: 96c81c6c08b76ab56773521120328154e15505a4 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* -*- Mode: idl; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsISupports.idl"

interface nsIOutputStream;
interface nsIMsgIncomingServer;
interface nsIMsgDBHdr;
interface nsIFile;

[scriptable, uuid(1772BE95-FDA9-4dfd-A663-8AF92C1E3024)]
interface nsISpamSettings: nsISupports {
  /**
   * 0 for nothing, 100 for highest
   */
  attribute long level;

  attribute boolean moveOnSpam;
  readonly attribute boolean markAsReadOnSpam;

  /**
   * Most consumers will just use spamFolderURI rather than accessing any of
   * target attributes directly.
   */
  attribute long moveTargetMode;
  const long MOVE_TARGET_MODE_ACCOUNT = 0;
  const long MOVE_TARGET_MODE_FOLDER = 1;
  // Despite their name the following are URIs.
  attribute AUTF8String actionTargetAccount;
  attribute AUTF8String actionTargetFolder;

  /**
   * built from moveTargetMode, actionTargetAccount, actionTargetFolder
   */
  readonly attribute AUTF8String spamFolderURI;

  attribute boolean purge;
  /**
   * interval, in days
   */
  attribute long purgeInterval;

  attribute boolean useWhiteList;
  attribute AUTF8String whiteListAbURI;

  /**
   * Should we do something when the user manually marks a message as junk?
   */
  readonly attribute boolean manualMark;

  /**
   * With manualMark true, which action (move to the Junk folder, or delete)
   * should we take when the user marks a message as junk.
   */
  readonly attribute long manualMarkMode;
  const long MANUAL_MARK_MODE_MOVE = 0;
  const long MANUAL_MARK_MODE_DELETE = 1;

  /**
   * integrate with server-side spam detection programs
   */
  attribute boolean useServerFilter;
  attribute ACString serverFilterName;
  readonly attribute nsIFile serverFilterFile;
  const long TRUST_POSITIVES = 1;
  const long TRUST_NEGATIVES = 2;
  attribute long serverFilterTrustFlags;

  // for logging
  readonly attribute boolean loggingEnabled;
  attribute nsIOutputStream logStream;
  void logJunkHit(in nsIMsgDBHdr aMsgHdr, in boolean aMoveMessage);
  void logJunkString(in string aLogText);
  void clone(in nsISpamSettings aSpamSettings);

  // aServer -> spam settings are associated with a particular server
  void initialize(in nsIMsgIncomingServer aServer);

  /**
   * check if junk processing for a message should be bypassed
   *
   * Typically this is determined by comparing message to: address
   * to a whitelist of known good addresses or domains.
   *
   * @param aMsgHdr  database header representing the message.
   *
   * @return         true  if this message is whitelisted, and junk
   *                       processing should be bypassed
   *
   *                 false otherwise (including in case of error)
   */
  boolean checkWhiteList(in nsIMsgDBHdr aMsgHdr);

};