NeoMutt  2024-12-12-14-g7b49f7
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
score.c File Reference

Routines for adding user scores to emails. More...

#include "config.h"
#include <stdbool.h>
#include <stdlib.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "email/lib.h"
#include "core/lib.h"
#include "mutt.h"
#include "score.h"
#include "index/lib.h"
#include "parse/lib.h"
#include "pattern/lib.h"
#include "globals.h"
#include "mutt_thread.h"
#include "protos.h"
+ Include dependency graph for score.c:

Go to the source code of this file.

Data Structures

struct  Score
 Scoring rule for email. More...
 

Functions

void mutt_check_rescore (struct Mailbox *m)
 Do the emails need to have their scores recalculated?
 
enum CommandResult mutt_parse_score (struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
 Parse the 'score' command - Implements Command::parse() -.
 
void mutt_score_message (struct Mailbox *m, struct Email *e, bool upd_mbox)
 Apply scoring to an email.
 
enum CommandResult mutt_parse_unscore (struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
 Parse the 'unscore' command - Implements Command::parse() -.
 

Variables

static struct ScoreScoreList = NULL
 Linked list of email scoring rules.
 

Detailed Description

Routines for adding user scores to emails.

Authors
  • Michael R. Elkins
  • Richard Russon
  • Victor Fernandes
  • Pietro Cerutti

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, see http://www.gnu.org/licenses/.

Definition in file score.c.

Function Documentation

◆ mutt_check_rescore()

void mutt_check_rescore ( struct Mailbox m)

Do the emails need to have their scores recalculated?

Parameters
mMailbox

Definition at line 67 of file score.c.

68{
69 const bool c_score = cs_subset_bool(NeoMutt->sub, "score");
70 if (OptNeedRescore && c_score)
71 {
72 const enum EmailSortType c_sort = cs_subset_sort(NeoMutt->sub, "sort");
73 const enum EmailSortType c_sort_aux = cs_subset_sort(NeoMutt->sub, "sort_aux");
74 if (((c_sort & SORT_MASK) == EMAIL_SORT_SCORE) ||
75 ((c_sort_aux & SORT_MASK) == EMAIL_SORT_SCORE))
76 {
77 OptNeedResort = true;
79 OptSortSubthreads = true;
80 }
81
82 mutt_debug(LL_NOTIFY, "NT_SCORE: %p\n", (void *) m);
83 notify_send(m->notify, NT_SCORE, 0, NULL);
84 }
85 OptNeedRescore = false;
86}
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:47
short cs_subset_sort(const struct ConfigSubset *sub, const char *name)
Get a sort config item by name.
Definition: helpers.c:266
#define SORT_MASK
Mask for the sort id.
Definition: sort.h:38
bool OptNeedRescore
(pseudo) set when the 'score' command is used
Definition: globals.c:65
bool OptNeedResort
(pseudo) used to force a re-sort
Definition: globals.c:66
EmailSortType
Methods for sorting Emails.
Definition: sort.h:53
@ EMAIL_SORT_SCORE
Sort by the email's score.
Definition: sort.h:58
bool OptSortSubthreads
(pseudo) used when $sort_aux changes
Definition: globals.c:72
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
@ LL_NOTIFY
Log of notifications.
Definition: logging2.h:48
bool notify_send(struct Notify *notify, enum NotifyType event_type, int event_subtype, void *event_data)
Send out a notification message.
Definition: notify.c:173
#define mutt_using_threads()
Definition: mutt_thread.h:114
@ NT_SCORE
Email scoring has changed.
Definition: notify_type.h:54
struct Notify * notify
Notifications: NotifyMailbox, EventMailbox.
Definition: mailbox.h:145
Container for Accounts, Notifications.
Definition: neomutt.h:42
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:46
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_score_message()

void mutt_score_message ( struct Mailbox m,
struct Email e,
bool  upd_mbox 
)

Apply scoring to an email.

Parameters
mMailbox
eEmail
upd_mboxIf true, update the Mailbox too

Definition at line 165 of file score.c.

166{
167 struct Score *tmp = NULL;
168 struct PatternCache cache = { 0 };
169
170 e->score = 0; /* in case of re-scoring */
171 for (tmp = ScoreList; tmp; tmp = tmp->next)
172 {
173 if (mutt_pattern_exec(SLIST_FIRST(tmp->pat), MUTT_MATCH_FULL_ADDRESS, NULL, e, &cache) > 0)
174 {
175 if (tmp->exact || (tmp->val == 9999) || (tmp->val == -9999))
176 {
177 e->score = tmp->val;
178 break;
179 }
180 e->score += tmp->val;
181 }
182 }
183 if (e->score < 0)
184 e->score = 0;
185
186 const short c_score_threshold_delete = cs_subset_number(NeoMutt->sub, "score_threshold_delete");
187 const short c_score_threshold_flag = cs_subset_number(NeoMutt->sub, "score_threshold_flag");
188 const short c_score_threshold_read = cs_subset_number(NeoMutt->sub, "score_threshold_read");
189
190 if (e->score <= c_score_threshold_delete)
191 mutt_set_flag(m, e, MUTT_DELETE, true, upd_mbox);
192 if (e->score <= c_score_threshold_read)
193 mutt_set_flag(m, e, MUTT_READ, true, upd_mbox);
194 if (e->score >= c_score_threshold_flag)
195 mutt_set_flag(m, e, MUTT_FLAG, true, upd_mbox);
196}
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition: helpers.c:143
bool mutt_pattern_exec(struct Pattern *pat, PatternExecFlags flags, struct Mailbox *m, struct Email *e, struct PatternCache *cache)
Match a pattern against an email header.
Definition: exec.c:1147
void mutt_set_flag(struct Mailbox *m, struct Email *e, enum MessageType flag, bool bf, bool upd_mbox)
Set a flag on an email.
Definition: flags.c:57
@ MUTT_READ
Messages that have been read.
Definition: mutt.h:73
@ MUTT_FLAG
Flagged messages.
Definition: mutt.h:79
@ MUTT_DELETE
Messages to be deleted.
Definition: mutt.h:75
#define MUTT_MATCH_FULL_ADDRESS
Match the full address.
Definition: lib.h:106
#define SLIST_FIRST(head)
Definition: queue.h:227
static struct Score * ScoreList
Linked list of email scoring rules.
Definition: score.c:61
int score
Message score.
Definition: email.h:113
Cache commonly-used patterns.
Definition: lib.h:117
Scoring rule for email.
Definition: score.c:52
bool exact
If this rule matches, don't evaluate any more.
Definition: score.c:56
struct PatternList * pat
Definition: score.c:54
int val
Definition: score.c:55
struct Score * next
Linked list.
Definition: score.c:57
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ ScoreList

struct Score* ScoreList = NULL
static

Linked list of email scoring rules.

Definition at line 61 of file score.c.