mail-notification

Fork of Jean-Yves Lefort's mail-notification, a tray icon to notify of new mail
git clone https://code.djc.id.au/git/mail-notification/

src/mn-hotmail-mailbox-properties.gob (1208B) - raw

      1 /*
      2  * Mail Notification
      3  * Copyright (C) 2003-2008 Jean-Yves Lefort <jylefort@brutele.be>
      4  *
      5  * This program is free software; you can redistribute it and/or modify
      6  * it under the terms of the GNU General Public License as published by
      7  * the Free Software Foundation; either version 3 of the License, or
      8  * (at your option) any later version.
      9  *
     10  * This program is distributed in the hope that it will be useful,
     11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13  * GNU General Public License for more details.
     14  *
     15  * You should have received a copy of the GNU General Public License along
     16  * with this program; if not, write to the Free Software Foundation, Inc.,
     17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
     18  */
     19 
     20 %headertop{
     21 #include "mn-webmail-mailbox-properties.h"
     22 %}
     23 
     24 %{
     25 #include "mn-stock.h"
     26 %}
     27 
     28 class MN:Hotmail:Mailbox:Properties from MN:Webmail:Mailbox:Properties
     29 {
     30   class_init (class)
     31   {
     32     MNMailboxPropertiesClass *p_class = MN_MAILBOX_PROPERTIES_CLASS(class);
     33 
     34     p_class->type = "hotmail";
     35     p_class->stock_id = MN_STOCK_HOTMAIL;
     36     p_class->combo_label = "Windows Live Hotmail";
     37   }
     38 }