NeoMutt  2023-03-22
Teaching an old dog new tricks
DOXYGEN
score.h File Reference

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

#include <stdbool.h>
#include <stdint.h>
#include "core/lib.h"
+ Include dependency graph for score.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

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

Detailed Description

Routines for adding user scores to emails.

Authors
  • Richard Russon

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.h.

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 63 of file score.c.

64{
65 const bool c_score = cs_subset_bool(NeoMutt->sub, "score");
66 if (OptNeedRescore && c_score)
67 {
68 const short c_sort = cs_subset_sort(NeoMutt->sub, "sort");
69 const short c_sort_aux = cs_subset_sort(NeoMutt->sub, "sort_aux");
70 if (((c_sort & SORT_MASK) == SORT_SCORE) || ((c_sort_aux & SORT_MASK) == SORT_SCORE))
71 {
72 OptNeedResort = true;
74 OptSortSubthreads = true;
75 }
76
77 mutt_debug(LL_NOTIFY, "NT_SCORE: %p\n", m);
78 notify_send(m->notify, NT_SCORE, 0, NULL);
79 }
80 OptNeedRescore = false;
81}
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:73
short cs_subset_sort(const struct ConfigSubset *sub, const char *name)
Get a sort config item by name.
Definition: helpers.c:292
bool OptNeedRescore
(pseudo) set when the 'score' command is used
Definition: globals.c:75
bool OptSortSubthreads
(pseudo) used when $sort_aux changes
Definition: globals.c:87
bool OptNeedResort
(pseudo) used to force a re-sort
Definition: globals.c:76
#define mutt_debug(LEVEL,...)
Definition: logging.h:84
@ LL_NOTIFY
Log of notifications.
Definition: logging.h:45
bool notify_send(struct Notify *notify, enum NotifyType event_type, int event_subtype, void *event_data)
Send out a notification message.
Definition: notify.c:171
#define mutt_using_threads()
Definition: mutt_thread.h:100
@ NT_SCORE
Email scoring has changed.
Definition: notify_type.h:53
#define SORT_MASK
Mask for the sort id.
Definition: sort2.h:74
@ SORT_SCORE
Sort by the email's score.
Definition: sort2.h:48
struct Notify * notify
Notifications: NotifyMailbox, EventMailbox.
Definition: mailbox.h:143
Container for Accounts, Notifications.
Definition: neomutt.h:37
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:39
+ 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 159 of file score.c.

160{
161 struct Score *tmp = NULL;
162 struct PatternCache cache = { 0 };
163
164 e->score = 0; /* in case of re-scoring */
165 for (tmp = ScoreList; tmp; tmp = tmp->next)
166 {
167 if (mutt_pattern_exec(SLIST_FIRST(tmp->pat), MUTT_MATCH_FULL_ADDRESS, NULL, e, &cache) > 0)
168 {
169 if (tmp->exact || (tmp->val == 9999) || (tmp->val == -9999))
170 {
171 e->score = tmp->val;
172 break;
173 }
174 e->score += tmp->val;
175 }
176 }
177 if (e->score < 0)
178 e->score = 0;
179
180 const short c_score_threshold_delete = cs_subset_number(NeoMutt->sub, "score_threshold_delete");
181 const short c_score_threshold_flag = cs_subset_number(NeoMutt->sub, "score_threshold_flag");
182 const short c_score_threshold_read = cs_subset_number(NeoMutt->sub, "score_threshold_read");
183
184 if (e->score <= c_score_threshold_delete)
185 mutt_set_flag_update(m, e, MUTT_DELETE, true, upd_mbox);
186 if (e->score <= c_score_threshold_read)
187 mutt_set_flag_update(m, e, MUTT_READ, true, upd_mbox);
188 if (e->score >= c_score_threshold_flag)
189 mutt_set_flag_update(m, e, MUTT_FLAG, true, upd_mbox);
190}
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition: helpers.c:169
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:1116
void mutt_set_flag_update(struct Mailbox *m, struct Email *e, enum MessageType flag, bool bf, bool upd_mbox)
Set a flag on an email.
Definition: flags.c:52
@ MUTT_READ
Messages that have been read.
Definition: mutt.h:81
@ MUTT_FLAG
Flagged messages.
Definition: mutt.h:87
@ MUTT_DELETE
Messages to be deleted.
Definition: mutt.h:83
#define MUTT_MATCH_FULL_ADDRESS
Match the full address.
Definition: lib.h:99
#define SLIST_FIRST(head)
Definition: queue.h:229
static struct Score * ScoreList
Definition: score.c:57
int score
Message score.
Definition: email.h:112
Cache commonly-used patterns.
Definition: lib.h:110
Scoring rule for email.
Definition: score.c:49
bool exact
if this rule matches, don't evaluate any more
Definition: score.c:53
struct PatternList * pat
Definition: score.c:51
int val
Definition: score.c:52
struct Score * next
Definition: score.c:54
+ Here is the call graph for this function:
+ Here is the caller graph for this function: