summaryrefslogblamecommitdiffstats
path: root/subjectrx.h
blob: 6fb17ceb90af9c188d0522a5562382fce97aa92f (plain) (tree)


























                                                                                
                     

              
                
                   


                                                       
  

                                                             
                                                    




                                                           
                                                                  

  
                       
                          




                                                                                                                   
                                               

                             
/**
 * @file
 * Subject Regex handling
 *
 * @authors
 * Copyright (C) 2021 Richard Russon <rich@flatcap.org>
 *
 * @copyright
 * 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, see <http://www.gnu.org/licenses/>.
 */

#ifndef MUTT_SUBJECTRX_H
#define MUTT_SUBJECTRX_H

#include <stdbool.h>
#include <stdint.h>
#include "core/lib.h"

struct Buffer;
struct Envelope;
struct MailboxView;

/**
 * enum NotifySubjRx - Subject Regex notification types
 *
 * Observers of #NT_SUBJRX will not be passed any Event data.
 *
 * @note Notifications are sent **after** the event.
 */
enum NotifySubjRx
{
  NT_SUBJRX_ADD = 1,    ///< Subject Regex has been added
  NT_SUBJRX_DELETE,     ///< Subject Regex has been deleted
  NT_SUBJRX_DELETE_ALL, ///< All Subject Regexes have been deleted
};

void subjrx_init(void);
void subjrx_cleanup(void);

enum CommandResult parse_subjectrx_list  (struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err);
enum CommandResult parse_unsubjectrx_list(struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err);

bool subjrx_apply_mods(struct Envelope *env);
void subjrx_clear_mods(struct MailboxView *mv);

#endif /* MUTT_SUBJECTRX_H */