├── css ├── rtl.css ├── blue_gradient │ ├── img │ │ └── gradient-blue.png │ └── default.css └── print.css ├── class ├── .htaccess ├── index.php ├── helper │ ├── index.php │ └── VCard.class.php ├── deliver │ └── index.php ├── template │ └── index.php ├── l10n │ └── index.php ├── mime │ ├── index.php │ ├── SMimeMessage.class.php │ └── Language.class.php ├── l10n.class.php └── mime.class.php ├── help ├── .htaccess └── index.php ├── po ├── .htaccess ├── index.php ├── independent_strings.txt └── compilepo ├── config ├── .htaccess ├── default_pref └── index.php ├── functions ├── .htaccess ├── mime.php ├── decode │ ├── ns_4551_1.php │ ├── index.php │ └── us_ascii.php ├── i18n.php ├── constants.php ├── index.php ├── encode │ └── index.php ├── htmlentities │ └── index.php └── imap.php ├── include ├── .htaccess ├── validate.php ├── index.php ├── options │ └── index.php └── timezones │ └── index.php ├── locale ├── .htaccess └── index.php ├── plugins ├── squirrelspell │ ├── modules │ │ ├── .htaccess │ │ ├── WHATISTHIS │ │ └── index.php │ ├── js │ │ ├── WHATISTHIS │ │ ├── index.php │ │ ├── decrypt_error.js │ │ ├── crypto_settings.js │ │ └── init.js │ ├── index.php │ ├── doc │ │ ├── index.php │ │ ├── PRIVACY │ │ └── CRYPTO │ ├── class │ │ └── common.php │ └── sqspell_options.php ├── change_password │ ├── version │ ├── index.php │ ├── backend │ │ └── index.php │ └── config_default.php ├── preview_pane │ ├── version │ ├── INSTALL │ ├── index.php │ ├── empty_frame.php │ └── templates │ │ └── default_advanced │ │ └── empty_frame.tpl ├── newmail │ ├── media │ │ ├── notify.mp3 │ │ ├── notify.swf │ │ ├── notify.wav │ │ ├── austin_mail.mp3 │ │ ├── austin_mail.swf │ │ ├── austin_mail.wav │ │ ├── got_a_message.mp3 │ │ ├── got_a_message.swf │ │ ├── got_a_message.wav │ │ ├── monty_message.mp3 │ │ ├── monty_message.swf │ │ ├── monty_message.wav │ │ └── index.php │ ├── sounds │ │ ├── FanFair.wav │ │ ├── Friends.wav │ │ ├── Notify.wav │ │ ├── MontyPython.wav │ │ └── index.php │ └── index.php ├── filters │ ├── bulkquery │ │ ├── bq.in │ │ ├── index.php │ │ ├── Makefile │ │ └── bq.out │ └── index.php ├── demo │ ├── getpot │ ├── INSTALL │ ├── index.php │ ├── templates │ │ └── default │ │ │ └── demo.tpl │ ├── demo.php │ ├── demo.pot │ └── README ├── test │ ├── INSTALL │ ├── index.php │ ├── test.php │ ├── README │ ├── functions.php │ ├── templates │ │ └── default │ │ │ └── test_menu.tpl │ └── ngettext.php ├── index.php ├── info │ ├── index.php │ └── setup.php ├── bug_report │ ├── index.php │ ├── templates │ │ ├── index.php │ │ └── default │ │ │ ├── index.php │ │ │ └── system_specs.tpl │ ├── config_default.php │ └── show_system_specs.php ├── calendar │ ├── index.php │ ├── setup.php │ └── README ├── fortune │ ├── index.php │ ├── config_sample.php │ ├── README │ └── setup.php ├── spamcop │ ├── index.php │ └── README ├── translate │ └── index.php ├── mail_fetch │ ├── index.php │ └── constants.php ├── administrator │ ├── index.php │ ├── INSTALL │ └── setup.php ├── listcommands │ ├── index.php │ ├── config_sample.php │ └── setup.php ├── sent_subfolders │ └── index.php └── message_details │ └── index.php ├── README ├── doc ├── i18n.txt ├── .htaccess ├── index.php └── russian_apache.txt ├── favicon.ico ├── images ├── spacer.png ├── sm_logo.png ├── sec_remove_eng.png ├── themes │ ├── xp │ │ ├── down.png │ │ ├── edit.png │ │ ├── plus.png │ │ ├── up.png │ │ ├── attach.png │ │ ├── delete.png │ │ ├── minus.png │ │ ├── flagged.png │ │ ├── msg_new.png │ │ ├── msg_read.png │ │ ├── prio_high.png │ │ ├── prio_low.png │ │ ├── transparent.png │ │ ├── msg_new_reply.png │ │ ├── msg_read_reply.png │ │ ├── msg_new_deleted.png │ │ ├── msg_read_deleted.png │ │ ├── msg_new_forwarded.png │ │ ├── msg_read_forwarded.png │ │ ├── msg_new_deleted_reply.png │ │ ├── msg_read_deleted_reply.png │ │ ├── msg_new_deleted_forwarded.png │ │ ├── msg_read_deleted_forwarded.png │ │ ├── theme.php │ │ └── index.php │ ├── default │ │ ├── plus.png │ │ ├── attach.png │ │ ├── blank.png │ │ ├── draft.png │ │ ├── folder.png │ │ ├── inbox.png │ │ ├── minus.png │ │ ├── senti.png │ │ ├── delitem.png │ │ ├── flagged.png │ │ ├── msg_new.png │ │ ├── msg_read.png │ │ ├── prio_high.png │ │ ├── prio_low.png │ │ ├── sort_none.png │ │ ├── transparent.png │ │ ├── up_pointer.png │ │ ├── down_pointer.png │ │ ├── folder_noinf.png │ │ ├── msg_new_reply.png │ │ ├── msg_read_reply.png │ │ ├── msg_new_deleted.png │ │ ├── msg_read_deleted.png │ │ ├── msg_new_forwarded.png │ │ ├── msg_read_forwarded.png │ │ ├── msg_new_deleted_reply.png │ │ ├── msg_read_deleted_reply.png │ │ ├── msg_new_deleted_forwarded.png │ │ ├── msg_read_deleted_forwarded.png │ │ ├── theme.php │ │ └── index.php │ └── index.php └── index.php ├── themes ├── bluesome.php ├── README.themes ├── css │ ├── serif-10.css │ ├── serif-12.css │ ├── tahoma-08.css │ ├── tahoma-10.css │ ├── tahoma-12.css │ ├── sans-08.css │ ├── sans-10.css │ ├── sans-12.css │ ├── comic-sans-08.css │ ├── comic-sans-10.css │ ├── comic-sans-12.css │ ├── verdana-08.css │ ├── verdana-10.css │ ├── verdana-12.css │ └── index.php ├── index.php ├── seaspray_theme.php ├── dark_green.php ├── redmond.php ├── ice_theme.php ├── plain_blue_theme.php ├── alien_glow.php ├── bluesteel_theme.php ├── wood_theme.php ├── midnight.php ├── silver_steel_theme.php ├── christmas.php ├── servery_theme.php ├── purple_theme.php ├── dark_grey_theme.php ├── blue_on_blue.php ├── high_contrast_theme.php ├── in_the_pink.php ├── sandstorm_theme.php ├── blue_grey_theme.php ├── spice_of_life_dark.php ├── spice_of_life_lite.php ├── forest_theme.php ├── deepocean_theme.php ├── dompie_theme.php ├── deepocean2_theme.php ├── shades_of_grey.php ├── slashdot_theme.php ├── greenhouse_effect.php ├── kind_of_blue.php ├── methodical_theme.php ├── spice_of_life.php ├── autumn.php ├── autumn2.php ├── turquoise.php ├── classic_blue.php ├── powder_blue.php ├── techno_blue.php ├── classic_blue2.php ├── netstyle_theme.php └── minimal_bw.php ├── configure ├── contrib ├── .htaccess ├── RPM │ ├── squirrelmail.conf │ └── squirrelmail.cron └── conf.pl.8 ├── templates ├── default_advanced │ ├── images │ │ ├── cd.png │ │ ├── base.png │ │ ├── join.png │ │ ├── line.png │ │ ├── page.png │ │ ├── empty.png │ │ ├── folder.png │ │ ├── globe.png │ │ ├── grippie.png │ │ ├── login1.png │ │ ├── login2.png │ │ ├── trash.png │ │ ├── imgfolder.png │ │ ├── minus_mid.png │ │ ├── plus_mid.png │ │ ├── question.png │ │ ├── folderopen.png │ │ ├── joinbottom.png │ │ ├── login_submit.png │ │ ├── minusbottom.png │ │ ├── musicfolder.png │ │ ├── nolines_plus.png │ │ ├── plusbottom.png │ │ └── nolines_minus.png │ └── left_main.tpl ├── default │ ├── images │ │ └── gradient-grey.png │ ├── css │ │ └── alternates │ │ │ └── my_example_style │ │ │ └── demo.css │ ├── footer.tpl │ ├── form_close.tpl │ ├── table_close.tpl │ ├── table_data_close.tpl │ ├── table_row_close.tpl │ ├── index.php │ ├── js │ │ └── index.php │ ├── non_breaking_space.tpl │ ├── header.tpl │ ├── read_message_print.tpl │ ├── read_xmailer.tpl │ ├── note.tpl │ ├── search_result_empty.tpl │ ├── empty_folder.tpl │ ├── table.tpl │ ├── read_message_priority.tpl │ ├── table_row.tpl │ ├── table_data.tpl │ ├── compose_newwin_close.tpl │ ├── motd.tpl │ ├── search_result_mailbox.tpl │ ├── addressbook_popup.tpl │ ├── plugins │ │ ├── listcommands │ │ │ └── read_body_header.tpl │ │ └── fortune │ │ │ └── mailbox_index_before.tpl │ ├── signout.tpl │ ├── line_break.tpl │ ├── read_message_body.tpl │ ├── read_html_iframe.tpl │ ├── horizontal_rule.tpl │ ├── label.tpl │ ├── input.tpl │ ├── span.tpl │ ├── textarea.tpl │ ├── webmail.tpl │ ├── read_handle_receipt.tpl │ └── search_result_top.tpl ├── index.php └── util_read.php ├── src ├── index.php ├── delete_message.php └── addrbook_popup.php └── index.php /css/rtl.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /class/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /help/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /po/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /functions/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /include/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /locale/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /plugins/squirrelspell/modules/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /plugins/change_password/version: -------------------------------------------------------------------------------- 1 | Change Password 2 | 0.2 3 | -------------------------------------------------------------------------------- /plugins/preview_pane/version: -------------------------------------------------------------------------------- 1 | Preview Pane 2 | 2.0-1.5.2 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Please see all our documentation in the doc/ directory. 2 | -------------------------------------------------------------------------------- /doc/i18n.txt: -------------------------------------------------------------------------------- 1 | See: http://www.squirrelmail.org/docs/devel/devel-3.html 2 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/favicon.ico -------------------------------------------------------------------------------- /images/spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/spacer.png -------------------------------------------------------------------------------- /functions/mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/functions/mime.php -------------------------------------------------------------------------------- /images/sm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/sm_logo.png -------------------------------------------------------------------------------- /themes/bluesome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/themes/bluesome.php -------------------------------------------------------------------------------- /themes/README.themes: -------------------------------------------------------------------------------- 1 | For information on creating themes, please read the administrator's manual. 2 | -------------------------------------------------------------------------------- /images/sec_remove_eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/sec_remove_eng.png -------------------------------------------------------------------------------- /images/themes/xp/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/down.png -------------------------------------------------------------------------------- /images/themes/xp/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/edit.png -------------------------------------------------------------------------------- /images/themes/xp/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/plus.png -------------------------------------------------------------------------------- /images/themes/xp/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/up.png -------------------------------------------------------------------------------- /images/themes/xp/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/attach.png -------------------------------------------------------------------------------- /images/themes/xp/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/delete.png -------------------------------------------------------------------------------- /images/themes/xp/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/minus.png -------------------------------------------------------------------------------- /functions/decode/ns_4551_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/functions/decode/ns_4551_1.php -------------------------------------------------------------------------------- /images/themes/default/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/plus.png -------------------------------------------------------------------------------- /images/themes/xp/flagged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/flagged.png -------------------------------------------------------------------------------- /images/themes/xp/msg_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_new.png -------------------------------------------------------------------------------- /images/themes/xp/msg_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_read.png -------------------------------------------------------------------------------- /images/themes/xp/prio_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/prio_high.png -------------------------------------------------------------------------------- /images/themes/xp/prio_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/prio_low.png -------------------------------------------------------------------------------- /plugins/squirrelspell/js/WHATISTHIS: -------------------------------------------------------------------------------- 1 | squirrelspell/js 2 | 3 | These are javascript files used by SquirrelSpell. 4 | -------------------------------------------------------------------------------- /images/themes/default/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/attach.png -------------------------------------------------------------------------------- /images/themes/default/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/blank.png -------------------------------------------------------------------------------- /images/themes/default/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/draft.png -------------------------------------------------------------------------------- /images/themes/default/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/folder.png -------------------------------------------------------------------------------- /images/themes/default/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/inbox.png -------------------------------------------------------------------------------- /images/themes/default/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/minus.png -------------------------------------------------------------------------------- /images/themes/default/senti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/senti.png -------------------------------------------------------------------------------- /images/themes/xp/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/transparent.png -------------------------------------------------------------------------------- /plugins/newmail/media/notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/notify.mp3 -------------------------------------------------------------------------------- /plugins/newmail/media/notify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/notify.swf -------------------------------------------------------------------------------- /plugins/newmail/media/notify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/notify.wav -------------------------------------------------------------------------------- /config/default_pref: -------------------------------------------------------------------------------- 1 | full_name= 2 | reply_to= 3 | show_html_default=0 4 | include_self_reply_all=0 5 | do_not_reply_to_self=1 6 | -------------------------------------------------------------------------------- /images/themes/default/delitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/delitem.png -------------------------------------------------------------------------------- /images/themes/default/flagged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/flagged.png -------------------------------------------------------------------------------- /images/themes/default/msg_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_new.png -------------------------------------------------------------------------------- /images/themes/default/msg_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_read.png -------------------------------------------------------------------------------- /images/themes/default/prio_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/prio_high.png -------------------------------------------------------------------------------- /images/themes/default/prio_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/prio_low.png -------------------------------------------------------------------------------- /images/themes/default/sort_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/sort_none.png -------------------------------------------------------------------------------- /images/themes/xp/msg_new_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_new_reply.png -------------------------------------------------------------------------------- /images/themes/xp/msg_read_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_read_reply.png -------------------------------------------------------------------------------- /plugins/newmail/sounds/FanFair.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/sounds/FanFair.wav -------------------------------------------------------------------------------- /plugins/newmail/sounds/Friends.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/sounds/Friends.wav -------------------------------------------------------------------------------- /plugins/newmail/sounds/Notify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/sounds/Notify.wav -------------------------------------------------------------------------------- /plugins/squirrelspell/modules/WHATISTHIS: -------------------------------------------------------------------------------- 1 | squirrelspell/modules 2 | 3 | This is where the loadable modules for SquirrelSpell are. -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Redirects to the config directory and runs conf.pl 4 | 5 | cd `dirname $0`/config && ./conf.pl 6 | -------------------------------------------------------------------------------- /contrib/.htaccess: -------------------------------------------------------------------------------- 1 | Order Deny,Allow 2 | Deny from All 3 | Allow from 127 4 | Allow from 10 5 | Allow from 172.16 6 | Allow from 192.168 -------------------------------------------------------------------------------- /doc/.htaccess: -------------------------------------------------------------------------------- 1 | Order Deny,Allow 2 | Deny from All 3 | Allow from 127 4 | Allow from 10 5 | Allow from 172.16 6 | Allow from 192.168 -------------------------------------------------------------------------------- /images/themes/default/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/transparent.png -------------------------------------------------------------------------------- /images/themes/default/up_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/up_pointer.png -------------------------------------------------------------------------------- /images/themes/xp/msg_new_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_new_deleted.png -------------------------------------------------------------------------------- /images/themes/xp/msg_read_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_read_deleted.png -------------------------------------------------------------------------------- /plugins/newmail/media/austin_mail.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/austin_mail.mp3 -------------------------------------------------------------------------------- /plugins/newmail/media/austin_mail.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/austin_mail.swf -------------------------------------------------------------------------------- /plugins/newmail/media/austin_mail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/austin_mail.wav -------------------------------------------------------------------------------- /css/blue_gradient/img/gradient-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/css/blue_gradient/img/gradient-blue.png -------------------------------------------------------------------------------- /images/themes/default/down_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/down_pointer.png -------------------------------------------------------------------------------- /images/themes/default/folder_noinf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/folder_noinf.png -------------------------------------------------------------------------------- /images/themes/default/msg_new_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_new_reply.png -------------------------------------------------------------------------------- /images/themes/default/msg_read_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_read_reply.png -------------------------------------------------------------------------------- /images/themes/xp/msg_new_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_new_forwarded.png -------------------------------------------------------------------------------- /images/themes/xp/msg_read_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_read_forwarded.png -------------------------------------------------------------------------------- /plugins/newmail/media/got_a_message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/got_a_message.mp3 -------------------------------------------------------------------------------- /plugins/newmail/media/got_a_message.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/got_a_message.swf -------------------------------------------------------------------------------- /plugins/newmail/media/got_a_message.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/got_a_message.wav -------------------------------------------------------------------------------- /plugins/newmail/media/monty_message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/monty_message.mp3 -------------------------------------------------------------------------------- /plugins/newmail/media/monty_message.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/monty_message.swf -------------------------------------------------------------------------------- /plugins/newmail/media/monty_message.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/media/monty_message.wav -------------------------------------------------------------------------------- /plugins/newmail/sounds/MontyPython.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/plugins/newmail/sounds/MontyPython.wav -------------------------------------------------------------------------------- /templates/default_advanced/images/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/cd.png -------------------------------------------------------------------------------- /templates/default_advanced/left_main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/left_main.tpl -------------------------------------------------------------------------------- /images/themes/default/msg_new_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_new_deleted.png -------------------------------------------------------------------------------- /images/themes/default/msg_read_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_read_deleted.png -------------------------------------------------------------------------------- /images/themes/xp/msg_new_deleted_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_new_deleted_reply.png -------------------------------------------------------------------------------- /templates/default/images/gradient-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default/images/gradient-grey.png -------------------------------------------------------------------------------- /templates/default_advanced/images/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/base.png -------------------------------------------------------------------------------- /templates/default_advanced/images/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/join.png -------------------------------------------------------------------------------- /templates/default_advanced/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/line.png -------------------------------------------------------------------------------- /templates/default_advanced/images/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/page.png -------------------------------------------------------------------------------- /images/themes/default/msg_new_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_new_forwarded.png -------------------------------------------------------------------------------- /images/themes/default/msg_read_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_read_forwarded.png -------------------------------------------------------------------------------- /images/themes/xp/msg_read_deleted_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_read_deleted_reply.png -------------------------------------------------------------------------------- /templates/default/css/alternates/my_example_style/demo.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: url('../../../images/gradient-grey.png') repeat-x fixed; 3 | } -------------------------------------------------------------------------------- /templates/default_advanced/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/empty.png -------------------------------------------------------------------------------- /templates/default_advanced/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/folder.png -------------------------------------------------------------------------------- /templates/default_advanced/images/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/globe.png -------------------------------------------------------------------------------- /templates/default_advanced/images/grippie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/grippie.png -------------------------------------------------------------------------------- /templates/default_advanced/images/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/login1.png -------------------------------------------------------------------------------- /templates/default_advanced/images/login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/login2.png -------------------------------------------------------------------------------- /templates/default_advanced/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/trash.png -------------------------------------------------------------------------------- /images/themes/default/msg_new_deleted_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_new_deleted_reply.png -------------------------------------------------------------------------------- /images/themes/xp/msg_new_deleted_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_new_deleted_forwarded.png -------------------------------------------------------------------------------- /images/themes/xp/msg_read_deleted_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/xp/msg_read_deleted_forwarded.png -------------------------------------------------------------------------------- /templates/default_advanced/images/imgfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/imgfolder.png -------------------------------------------------------------------------------- /templates/default_advanced/images/minus_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/minus_mid.png -------------------------------------------------------------------------------- /templates/default_advanced/images/plus_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/plus_mid.png -------------------------------------------------------------------------------- /templates/default_advanced/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/question.png -------------------------------------------------------------------------------- /images/themes/default/msg_read_deleted_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_read_deleted_reply.png -------------------------------------------------------------------------------- /templates/default_advanced/images/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/folderopen.png -------------------------------------------------------------------------------- /templates/default_advanced/images/joinbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/joinbottom.png -------------------------------------------------------------------------------- /templates/default_advanced/images/login_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/login_submit.png -------------------------------------------------------------------------------- /templates/default_advanced/images/minusbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/minusbottom.png -------------------------------------------------------------------------------- /templates/default_advanced/images/musicfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/musicfolder.png -------------------------------------------------------------------------------- /templates/default_advanced/images/nolines_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/nolines_plus.png -------------------------------------------------------------------------------- /templates/default_advanced/images/plusbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/plusbottom.png -------------------------------------------------------------------------------- /images/themes/default/msg_new_deleted_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_new_deleted_forwarded.png -------------------------------------------------------------------------------- /images/themes/default/msg_read_deleted_forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/images/themes/default/msg_read_deleted_forwarded.png -------------------------------------------------------------------------------- /templates/default_advanced/images/nolines_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/squirrelmail/master/templates/default_advanced/images/nolines_minus.png -------------------------------------------------------------------------------- /plugins/filters/bulkquery/bq.in: -------------------------------------------------------------------------------- 1 | .bl.spamcop.net 2 | .relays.osirusoft.com 3 | ---------- 4 | 2.0.0.127 5 | 3.0.0.127 6 | 4.0.0.127 7 | 5.0.0.127 8 | 6.0.0.127 9 | 7.0.0.127 10 | -------------------------------------------------------------------------------- /contrib/RPM/squirrelmail.conf: -------------------------------------------------------------------------------- 1 | # 2 | # SquirrelMail is a webmail package written in PHP. 3 | # This is a config file for apache 2.0. 4 | # $Id$ 5 | # 6 | 7 | Alias /webmail /usr/share/squirrelmail 8 | -------------------------------------------------------------------------------- /contrib/RPM/squirrelmail.cron: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # This goes through the SquirrelMail attachment spool directory and 3 | # removes any abandoned temporary files that are more than 10 days old. 4 | # $Id$ 5 | # 6 | /usr/sbin/tmpwatch 240 __ATTDIR__ 7 | -------------------------------------------------------------------------------- /themes/css/serif-10.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: serif; 3 | } 4 | body, small { 5 | font-size: 8pt; 6 | } 7 | td, th { 8 | font-size: 10pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 9pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/serif-12.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: serif; 3 | } 4 | body, small { 5 | font-size: 10pt; 6 | } 7 | td, th { 8 | font-size: 12pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 11pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/tahoma-08.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: tahoma,sans-serif; 3 | } 4 | body, small { 5 | font-size: 6pt; 6 | } 7 | td, th { 8 | font-size: 8pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 7pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/tahoma-10.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: tahoma,sans-serif; 3 | } 4 | body, small { 5 | font-size: 8pt; 6 | } 7 | td, th { 8 | font-size: 10pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 9pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/tahoma-12.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: tahoma,sans-serif; 3 | } 4 | body, small { 5 | font-size: 10pt; 6 | } 7 | td, th { 8 | font-size: 12pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 11pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/sans-08.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: helvetica,arial,sans-serif; 3 | } 4 | body, small { 5 | font-size: 6pt; 6 | } 7 | td, th { 8 | font-size: 8pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 7pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/sans-10.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: helvetica,arial,sans-serif; 3 | } 4 | body, small { 5 | font-size: 8pt; 6 | } 7 | td, th { 8 | font-size: 10pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 9pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/sans-12.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: helvetica,arial,sans-serif; 3 | } 4 | body, small { 5 | font-size: 10pt; 6 | } 7 | td, th { 8 | font-size: 12pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 11pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/comic-sans-08.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: comic sans ms,sans-serif; 3 | } 4 | body, small { 5 | font-size: 6pt; 6 | } 7 | td, th { 8 | font-size: 8pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 7pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/comic-sans-10.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: comic sans ms,sans-serif; 3 | } 4 | body, small { 5 | font-size: 8pt; 6 | } 7 | td, th { 8 | font-size: 10pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 9pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/comic-sans-12.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: comic sans ms,sans-serif; 3 | } 4 | body, small { 5 | font-size: 10pt; 6 | } 7 | td, th { 8 | font-size: 12pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 11pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/verdana-08.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: bitstream vera sans,verdana,sans-serif; 3 | } 4 | body, small { 5 | font-size: 6pt; 6 | } 7 | td, th { 8 | font-size: 8pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 7pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/verdana-10.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: bitstream vera sans,verdana,sans-serif; 3 | } 4 | body, small { 5 | font-size: 8pt; 6 | } 7 | td, th { 8 | font-size: 10pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 9pt; 13 | } 14 | -------------------------------------------------------------------------------- /themes/css/verdana-12.css: -------------------------------------------------------------------------------- 1 | body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { 2 | font-family: bitstream vera sans,verdana,sans-serif; 3 | } 4 | body, small { 5 | font-size: 10pt; 6 | } 7 | td, th { 8 | font-size: 12pt; 9 | } 10 | textarea, pre { 11 | font-family: monospace; 12 | font-size: 11pt; 13 | } 14 | -------------------------------------------------------------------------------- /include/validate.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/index.php: -------------------------------------------------------------------------------- 1 | _("XP"),'PATH'=> SM_PATH . 'images/themes/xp/'); 13 | -------------------------------------------------------------------------------- /images/themes/default/theme.php: -------------------------------------------------------------------------------- 1 | _("Default"),'PATH'=> SM_PATH.'images/themes/default/'); 13 | -------------------------------------------------------------------------------- /plugins/preview_pane/INSTALL: -------------------------------------------------------------------------------- 1 | Installing Preview Pane 2 | ======================= 3 | 4 | This plugin should only be activated by a skin (template set) 5 | that is capable of displaying a message preview pane. One 6 | such skin (template set) is the "default advanced" one that 7 | comes with the SquirrelMail base package. 8 | 9 | No manual activation or installation steps are required. 10 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/demo/getpot: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | XGETTEXT_OPTIONS="--keyword=_ -keyword=N_ --default-domain=demo --no-location" 3 | 4 | # Allows controlling language option 5 | # (gettext v.0.10.40 = -C, gettext 0.11+ = -L php). 6 | if [ $SM_OLD_GETTEXT ] ; then 7 | XGETTEXT_OPTIONS="${XGETTEXT_OPTIONS} -C"; 8 | else 9 | XGETTEXT_OPTIONS="${XGETTEXT_OPTIONS} -L php"; 10 | fi 11 | 12 | xgettext ${XGETTEXT_OPTIONS} *.php --output=demo.pot 13 | -------------------------------------------------------------------------------- /css/blue_gradient/default.css: -------------------------------------------------------------------------------- 1 | td.header1 { 2 | background: url('img/gradient-blue.png') repeat-x; 3 | vertical-align: middle; 4 | } 5 | 6 | #optionGroups td.optionElement table { 7 | border:1px solid #a6b2e2; 8 | } 9 | 10 | #optionGroups td.optionName { 11 | background: url('img/gradient-blue.png') repeat-x; 12 | vertical-align: middle; 13 | } 14 | 15 | #optionDisplay table { 16 | border:1px solid #a6b2e2; 17 | } -------------------------------------------------------------------------------- /plugins/demo/INSTALL: -------------------------------------------------------------------------------- 1 | Installing Demo 2 | =============== 3 | 4 | The Demo plugin comes with SquirrelMail, so you should 5 | only need to activate it using the configuration utility. 6 | 7 | 1) Go to your config directory and run conf.pl. Choose 8 | option 8 and move the plugin from the "Available Plugins" 9 | category to the "Installed Plugins" category. Save and exit. 10 | 11 | $ cd config/ 12 | $ ./conf.pl 13 | 14 | -------------------------------------------------------------------------------- /plugins/test/INSTALL: -------------------------------------------------------------------------------- 1 | Installing Test 2 | =============== 3 | 4 | The Test plugin comes with SquirrelMail, so you should 5 | only need to activate it using the configuration utility. 6 | 7 | 1) Go to your config directory and run conf.pl. Choose 8 | option 8 and move the plugin from the "Available Plugins" 9 | category to the "Installed Plugins" category. Save and exit. 10 | 11 | $ cd config/ 12 | $ ./conf.pl 13 | 14 | -------------------------------------------------------------------------------- /css/print.css: -------------------------------------------------------------------------------- 1 | /* printer friendly style, currently only targeted at read_body */ 2 | 3 | /* Drop any irrelevant stuff that's normally on the read_body page */ 4 | #page_header, .readMenuBar, .spacer, form, #printMessageBox, 5 | #listcommands, .field_Options, .attachActions { display: none; } 6 | 7 | /* Display attachment list a bit better */ 8 | .header5 { font-size: larger; } 9 | .readAttachments td, .fieldName { padding-right: 1em; } 10 | 11 | -------------------------------------------------------------------------------- /functions/i18n.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/constants.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/footer.tpl: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /templates/default/form_close.tpl: -------------------------------------------------------------------------------- 1 | 10 | * 11 | * @copyright 1999-2023 The SquirrelMail Project Team 12 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 13 | * @version $Id$ 14 | * @package squirrelmail 15 | * @subpackage templates 16 | */ 17 | 18 | 19 | ?> 20 | 21 | -------------------------------------------------------------------------------- /plugins/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/table_close.tpl: -------------------------------------------------------------------------------- 1 | 10 | * 11 | * @copyright 1999-2023 The SquirrelMail Project Team 12 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 13 | * @version $Id$ 14 | * @package squirrelmail 15 | * @subpackage templates 16 | */ 17 | 18 | 19 | ?> 20 | 21 | -------------------------------------------------------------------------------- /class/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /class/helper/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/demo/index.php: -------------------------------------------------------------------------------- 1 | 10 | * 11 | * @copyright 1999-2023 The SquirrelMail Project Team 12 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 13 | * @version $Id$ 14 | * @package squirrelmail 15 | * @subpackage templates 16 | */ 17 | 18 | 19 | ?> 20 | 21 | -------------------------------------------------------------------------------- /templates/default/table_row_close.tpl: -------------------------------------------------------------------------------- 1 | 10 | * 11 | * @copyright 1999-2023 The SquirrelMail Project Team 12 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 13 | * @version $Id$ 14 | * @package squirrelmail 15 | * @subpackage templates 16 | */ 17 | 18 | 19 | ?> 20 | 21 | -------------------------------------------------------------------------------- /class/deliver/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /class/template/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/options/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/test/test.php: -------------------------------------------------------------------------------- 1 | display('plugins/test/test_menu.tpl'); 20 | $oTemplate->display('footer.tpl'); 21 | 22 | -------------------------------------------------------------------------------- /themes/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /class/l10n/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /class/mime/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/decode/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/themes/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/bug_report/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/filters/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/fortune/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/newmail/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/preview_pane/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/translate/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/encode/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/themes/xp/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/timezones/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mail_fetch/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/newmail/media/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/newmail/sounds/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/htmlentities/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/themes/default/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/administrator/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/bug_report/templates/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/listcommands/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sent_subfolders/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/js/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/change_password/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/message_details/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/squirrelspell/doc/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/squirrelspell/js/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/bug_report/templates/default/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/squirrelspell/modules/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/util_read.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/non_breaking_space.tpl: -------------------------------------------------------------------------------- 1 |  display('footer.tpl'); 22 | -------------------------------------------------------------------------------- /plugins/filters/bulkquery/Makefile: -------------------------------------------------------------------------------- 1 | 2 | DESTDIR=/usr/local/bin 3 | BINDROOT=/usr/local 4 | 5 | # Solaris 6 | #CC=gcc 7 | #CFLAGS=-I$(BINDROOT)/bind/include -I$(BINDROOT)/include 8 | #LDFLAGS=-L$(BINDROOT)/lib -llwres -lsocket -lnsl -lpthread 9 | 10 | # Linux 11 | CC=gcc 12 | CFLAGS=-I$(BINDROOT)/bind/include -I$(BINDROOT)/include 13 | LDFLAGS=-L$(BINDROOT)/lib -lpthread -llwres 14 | 15 | all: bulkquery 16 | 17 | bulkquery: bulkquery.c 18 | $(CC) $(CFLAGS) -o bulkquery bulkquery.c $(LDFLAGS) 19 | 20 | clean: 21 | rm bulkquery 22 | 23 | install: 24 | cp bulkquery $(DESTDIR)/bulkquery 25 | chmod 755 $(DESTDIR)/bulkquery 26 | -------------------------------------------------------------------------------- /plugins/fortune/README: -------------------------------------------------------------------------------- 1 | Simple SquirrelMail plugin that displays the quotes above the message listing. 2 | 3 | Original code contributed by paulm@spider.org, now maintained by the 4 | SquirrelMail Project Team. 5 | 6 | Plugin requires /usr/games/fortune or any other similar program, that outputs 7 | short text messages. If you are running php in safe_mode, path to program must 8 | be present in php safe_mode_exec_dir setting. If you are running chrooted 9 | webserver, program must be present inside of your chroot jail. 10 | 11 | Plugin can be configured with config/fortune_config.php or 12 | plugins/fortune/config.php files. 13 | -------------------------------------------------------------------------------- /templates/default/header.tpl: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | 17 |
18 | -------------------------------------------------------------------------------- /templates/default/read_xmailer.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/preview_pane/empty_frame.php: -------------------------------------------------------------------------------- 1 | 8 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 9 | * @version $Id$ 10 | * @package plugins 11 | * @subpackage preview_pane 12 | */ 13 | 14 | 15 | include_once('../../include/init.php'); 16 | 17 | global $org_title; 18 | displayHtmlHeader($org_title, '', FALSE, FALSE); 19 | 20 | $oTemplate->display('plugins/preview_pane/empty_frame.tpl'); 21 | $oTemplate->display('footer.tpl'); 22 | 23 | 24 | -------------------------------------------------------------------------------- /po/independent_strings.txt: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /class/mime/SMimeMessage.class.php: -------------------------------------------------------------------------------- 1 | $output); 24 | 25 | } 26 | 27 | 28 | -------------------------------------------------------------------------------- /templates/default/note.tpl: -------------------------------------------------------------------------------- 1 | 20 |
21 |
22 | 23 |
24 |
25 |
26 | -------------------------------------------------------------------------------- /templates/default/search_result_empty.tpl: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /plugins/demo/templates/default/demo.tpl: -------------------------------------------------------------------------------- 1 | 27 | 28 | HELLO WORLD 29 | 30 | -------------------------------------------------------------------------------- /plugins/mail_fetch/constants.php: -------------------------------------------------------------------------------- 1 | 19 |
20 | 21 | 22 | 25 | 26 |
23 | 24 |
27 |
-------------------------------------------------------------------------------- /plugins/filters/bulkquery/bq.out: -------------------------------------------------------------------------------- 1 | 7.0.0.127.relays.osirusoft.com, 7.0.0.127.relays.osirusoft.com, 7200 2 | 6.0.0.127.relays.osirusoft.com,127.0.0.6,42807 3 | 5.0.0.127.relays.osirusoft.com, 5.0.0.127.relays.osirusoft.com, 7200 4 | 4.0.0.127.relays.osirusoft.com,127.0.0.4,42807 5 | 6.0.0.127.bl.spamcop.net, 6.0.0.127.bl.spamcop.net, 7200 6 | 7.0.0.127.bl.spamcop.net, 7.0.0.127.bl.spamcop.net, 7200 7 | 3.0.0.127.relays.osirusoft.com,127.0.0.3,42808 8 | 4.0.0.127.bl.spamcop.net, 4.0.0.127.bl.spamcop.net, 7200 9 | 5.0.0.127.bl.spamcop.net, 5.0.0.127.bl.spamcop.net, 7200 10 | 2.0.0.127.bl.spamcop.net,127.0.0.2,1542 11 | 2.0.0.127.relays.osirusoft.com,127.0.0.2,42808 12 | 3.0.0.127.bl.spamcop.net, 3.0.0.127.bl.spamcop.net, 7200 13 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |

ERROR: Config file ' . 17 | '"config/config.php" not found. You need to ' . 18 | 'configure SquirrelMail before you can use it.

'; 19 | exit; 20 | } 21 | 22 | // If we are, go ahead to the login page. 23 | header('Location: src/login.php'); 24 | 25 | -------------------------------------------------------------------------------- /src/addrbook_popup.php: -------------------------------------------------------------------------------- 1 | display('addressbook_popup.tpl'); 26 | 27 | 28 | -------------------------------------------------------------------------------- /plugins/listcommands/config_sample.php: -------------------------------------------------------------------------------- 1 | $value) { 27 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 28 | } 29 | 30 | echo ">\n"; 31 | 32 | -------------------------------------------------------------------------------- /templates/default/read_message_priority.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/table_row.tpl: -------------------------------------------------------------------------------- 1 | $value) { 27 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 28 | } 29 | 30 | echo ">\n"; 31 | 32 | -------------------------------------------------------------------------------- /templates/default/table_data.tpl: -------------------------------------------------------------------------------- 1 | $value) { 27 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 28 | } 29 | 30 | echo ">\n"; 31 | 32 | -------------------------------------------------------------------------------- /plugins/test/templates/default/test_menu.tpl: -------------------------------------------------------------------------------- 1 | 26 | Tests: 27 |
28 |
29 |

decodeHeader() test

30 |

ngettext() test

31 | 32 | -------------------------------------------------------------------------------- /themes/seaspray_theme.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2001-2023 The SquirrelMail Project Team 8 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 9 | * @version $Id$ 10 | */ 11 | 12 | function AYS(){ 13 | if (document.forms[0].delete_words.checked && document.forms[0].old_key.value){ 14 | alert (ui_candel); 15 | return false; 16 | } 17 | 18 | if (!document.forms[0].delete_words.checked && !document.forms[0].old_key.value){ 19 | alert(ui_choice); 20 | return false; 21 | } 22 | if (document.forms[0].delete_words.checked) 23 | return confirm(ui_willdel); 24 | return true; 25 | } -------------------------------------------------------------------------------- /templates/default/compose_newwin_close.tpl: -------------------------------------------------------------------------------- 1 | 23 |
24 | 25 | 26 | 29 | 30 |
27 | " onclick="self.close()" /> 28 |
31 |
-------------------------------------------------------------------------------- /plugins/squirrelspell/doc/PRIVACY: -------------------------------------------------------------------------------- 1 | PRIVACY CONCERNS WHEN USING SQUIRRELSPELL: 2 | ------------------------------------------- 3 | 4 | Beginning with version v0.2 SquirrelSpell saves personal dictionary on the 5 | server. This has a potential of a serious privacy issue, therefore you 6 | should configure your system to disallow web access to the directory where 7 | your user dictionaries are stored. By default they are stored in your 8 | $data_dir which you provided in your SquirrelMail config. This is the best 9 | option, but you should read the SquirrelMail FAQ's and Readme's on how to 10 | secure that directory. 11 | 12 | Also, see the CRYPTO file for instructions on how to enable encryption 13 | of user dictionaries. This is done in order to further enhance the 14 | privacy of your users. 15 | -------------------------------------------------------------------------------- /plugins/demo/demo.php: -------------------------------------------------------------------------------- 1 | display('plugins/demo/demo.tpl'); 31 | $oTemplate->display('footer.tpl'); 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /plugins/squirrelspell/class/common.php: -------------------------------------------------------------------------------- 1 | error = $sError; 23 | return false; 24 | } 25 | 26 | function check_text($sText) { 27 | return $this->set_error('check_text method is not implemented in this class.'); 28 | } 29 | } -------------------------------------------------------------------------------- /plugins/squirrelspell/js/crypto_settings.js: -------------------------------------------------------------------------------- 1 | /** 2 | * crypto_settings.js 3 | * 4 | * Some client-side checks. Nothing fancy. 5 | * 6 | * @author Konstantin Riabitsev 7 | * @copyright 2001-2023 The SquirrelMail Project Team 8 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 9 | * @version $Id$ 10 | */ 11 | 12 | /** 13 | * This function is the only thing. It is called on form submit and 14 | * asks the user some questions. 15 | */ 16 | function checkMe(){ 17 | if (!document.forms[0].action.checked){ 18 | alert (ui_makesel); 19 | return false; 20 | } 21 | if (document.forms[0].encaction.value=="encrypt") 22 | cmsg=ui_encrypt; 23 | if (document.forms[0].encaction.value=="decrypt") 24 | cmsg=ui_decrypt; 25 | return confirm(cmsg); 26 | } 27 | -------------------------------------------------------------------------------- /themes/dark_green.php: -------------------------------------------------------------------------------- 1 | SquirrelMail Demo Plugin Translation File 2 | # Copyright (c) 2007 The Squirrelmail Development Team 3 | # This file is distributed under the same license as the SquirrelMail package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: demo\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2007-09-05 11:37-0700\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: SquirrelMail Language Team \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=CHARSET\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | msgid "Demo" 20 | msgstr "" 21 | 22 | msgid "This is where you would describe what your plugin does." 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /templates/default/motd.tpl: -------------------------------------------------------------------------------- 1 | 20 | 21 |
22 | 23 | 24 | 30 | 31 |
25 | 29 |
32 |
33 | 34 | -------------------------------------------------------------------------------- /templates/default/search_result_mailbox.tpl: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /themes/redmond.php: -------------------------------------------------------------------------------- 1 | 23 | 24 | 29 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /templates/default/plugins/listcommands/read_body_header.tpl: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | 29 | : 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /plugins/bug_report/templates/default/system_specs.tpl: -------------------------------------------------------------------------------- 1 | 27 | 28 | 29 | 30 |
31 | 
32 | 
33 | 34 | 35 | -------------------------------------------------------------------------------- /plugins/calendar/README: -------------------------------------------------------------------------------- 1 | SquirrelMail Calendar Plugin 2 | $Id$ 3 | 4 | ********** DESCRIPTION ************ 5 | 6 | Simple calendar plugin for SquirrelMail. As of now it has month view and 7 | day view. Events can be created, deleted and updated. 8 | 9 | 10 | ********** REQUIREMENTS ********** 11 | 12 | SquirrelMail 1.4.3 or later (1.5.0 version excluded) 13 | Write access to data directory (plugin uses own data files) 14 | 15 | Since SquirrelMail 1.2.5 Calendar plugin is bundled with SquirrelMail. 16 | Plugin unbundling and use of plugin with different SquirrelMail version 17 | is not recommended. 18 | 19 | *************** TODO ************** 20 | 21 | - single entry of recurring events (ex. birthday repeats every year) 22 | - reminder email/javascript/etc 23 | - weekly view 24 | 25 | 26 | ************ CREDITS ************** 27 | 28 | This plugin has been originally created by Michal Szczotka , 29 | and is now maintained by the SquirrelMail Project Team. 30 | -------------------------------------------------------------------------------- /plugins/demo/README: -------------------------------------------------------------------------------- 1 | Demo plugin for SquirrelMail 2 | ============================ 3 | Version $Id$ 4 | 5 | Copyright 1999-2023 The SquirrelMail Project Team 6 | 7 | 8 | Description 9 | =========== 10 | 11 | This plugin provides test/sample code for many of the hook 12 | points in the SquirrelMail core. It is primarily intended 13 | as an aid to plugin authors who can copy the code herein to 14 | ensure correct hook code and thus focus on other more 15 | important plugin functionality. This plugin should not be 16 | enabled in a production environment. 17 | 18 | Note that the hook code herein is specific to the version 19 | of SquirrelMail that it is found in and is not necessarily 20 | cross-version compatible. Please consult the demo plugin 21 | in all versions of SquirrelMail that your plugin will target. 22 | 23 | 24 | 25 | License 26 | ======= 27 | 28 | This plugin is released under the GNU General Public 29 | License (see the file COPYING for details). 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /class/mime.class.php: -------------------------------------------------------------------------------- 1 | 7 | # ** Example: compilepo es 8 | # ** 9 | # ** Philipe Mingo 10 | # ** Konstantin Riabitsev 11 | # ** 12 | # ** $Id$ 13 | 14 | if [ -z "$1" ]; then 15 | echo "USAGE: compilepo [localename]" 16 | exit 1 17 | fi 18 | 19 | WORKDIR=../locale 20 | LOCALEDIR=$WORKDIR/$1 21 | 22 | if [ ! -d $LOCALEDIR ]; then 23 | # lessee if it's been renamed. 24 | DCOUNT=`find $WORKDIR/ -name $1* | wc -l` 25 | if [ $DCOUNT -eq 1 ]; then 26 | # aha 27 | LOCALEDIR=`find $WORKDIR/ -name $1*` 28 | elif [ $DCOUNT -gt 1 ]; then 29 | # err out 30 | echo "More than one locale matching this name found:" 31 | find $WORKDIR/ -name $1* 32 | echo "You have to be more specific." 33 | exit 1 34 | fi 35 | fi 36 | 37 | echo "Compiling $LOCALEDIR/LC_MESSAGES/squirrelmail.po" 38 | msgfmt -o $LOCALEDIR/LC_MESSAGES/squirrelmail.mo \ 39 | -c $LOCALEDIR/LC_MESSAGES/squirrelmail.po -------------------------------------------------------------------------------- /templates/default/signout.tpl: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 |
21 | 22 | 25 | 26 | 30 | 31 |
23 | 24 |
27 |
28 |
29 |

32 |
33 | 34 | -------------------------------------------------------------------------------- /themes/ice_theme.php: -------------------------------------------------------------------------------- 1 | $value) { 31 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 32 | } 33 | echo ' />'; 34 | -------------------------------------------------------------------------------- /templates/default/read_message_body.tpl: -------------------------------------------------------------------------------- 1 | 25 |
26 | 27 | 28 | 31 | 32 |
29 | 30 |
33 | 34 | 35 | 37 | 38 |
36 |
39 |
40 | -------------------------------------------------------------------------------- /templates/default/read_html_iframe.tpl: -------------------------------------------------------------------------------- 1 | 25 |
26 | 27 | 30 |
-------------------------------------------------------------------------------- /templates/default/horizontal_rule.tpl: -------------------------------------------------------------------------------- 1 | $value) { 31 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 32 | } 33 | echo ' />'; 34 | -------------------------------------------------------------------------------- /themes/plain_blue_theme.php: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2002-2023 The SquirrelMail Project Team 9 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 10 | * @version $Id$ 11 | * @package squirrelmail 12 | * @subpackage themes 13 | */ 14 | 15 | global $color; 16 | $color[0] = "#19881a"; // TitleBar 17 | $color[1] = "#800000"; // 18 | $color[2] = "#cc0000"; // Warning/Error Messages 19 | $color[3] = "#000000"; // Left Bar Background 20 | $color[4] = "#000000"; // Normal Background 21 | $color[5] = "#0a6c11"; // Table Headers 22 | $color[6] = "#4cc748"; // Text on left bar 23 | #$color[7] = "#706c44"; // Links 24 | $color[7] = "#ffffff"; // Normal text 25 | $color[8] = "#61ff5c"; // Links 26 | $color[9] = "#157316"; // Darker version of #0 27 | $color[10] = "#105611"; // Darker version of #9 28 | $color[11] = "#ffffff"; // Special Folders color 29 | -------------------------------------------------------------------------------- /class/helper/VCard.class.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 1999-2023 The SquirrelMail Project Team 8 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 9 | * @version $Id$ 10 | * @package plugins 11 | * @subpackage info 12 | */ 13 | 14 | /** 15 | * Plugin init function 16 | * @access private 17 | */ 18 | function squirrelmail_plugin_init_info() { 19 | global $squirrelmail_plugin_hooks; 20 | $squirrelmail_plugin_hooks['optpage_register_block']['info'] = 'info_opt'; 21 | } 22 | 23 | /** 24 | * Plugin's block in option page 25 | * @access private 26 | */ 27 | function info_opt() { 28 | global $optpage_blocks; 29 | 30 | $optpage_blocks[] = array( 31 | 'name' => _("IMAP server information"), 32 | 'url' => '../plugins/info/options.php', 33 | 'desc' => _("Run some test IMAP commands, displaying both the command and the result. These tests use the SquirrelMail IMAP commands and your current SquirrelMail configuration. Custom command strings can be used."), 34 | 'js' => false 35 | ); 36 | } 37 | -------------------------------------------------------------------------------- /themes/wood_theme.php: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2000-2023 The SquirrelMail Project Team 9 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 10 | * @version $Id$ 11 | * @package squirrelmail 12 | * @subpackage themes 13 | */ 14 | 15 | global $color; 16 | $color[0] = '#f1eee3'; // (light gray) TitleBar 17 | $color[1] = '#800000'; // (red) 18 | $color[2] = '#cc0000'; // (light red) Warning/Error Messages 19 | $color[3] = '#7d6f3f'; // (green-blue) Left Bar Background 20 | $color[4] = '#ffffff'; // (white) Normal Background 21 | $color[5] = '#c7b98b'; // (light yellow) Table Headers 22 | $color[6] = '#000000'; // (black) Text on left bar 23 | $color[7] = '#434031'; // (blue) Links 24 | $color[8] = '#000000'; // (black) Normal text 25 | $color[9] = '#c7b98b'; // (mid-gray) Darker version of #0 26 | $color[10] = '#f1eee3'; // (dark gray) Darker version of #9 27 | $color[11] = '#770000'; // (dark red) Special Folders color 28 | $color[15] = '#c7b98b'; // (mid-gray) Unselectable folders 29 | -------------------------------------------------------------------------------- /themes/purple_theme.php: -------------------------------------------------------------------------------- 1 | 4 | * Name: Blue on Blue 5 | * Date: December 29, 2005 6 | * Theme Name: "Blue on Blue" 7 | * @copyright 2005-2023 The SquirrelMail Project Team 8 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 9 | * @version $Id$ 10 | * @package squirrelmail 11 | * @subpackage themes 12 | */ 13 | 14 | global $color; 15 | $color[0] = '#4c4b83'; // TitleBar 16 | $color[1] = '#ffffff'; // Not Currently Used 17 | $color[2] = '#ffffff'; // Warning/Error Messages 18 | $color[3] = '#19193a'; // Left Bar Background 19 | $color[4] = '#19193a'; // Normal Background 20 | $color[5] = '#19193a'; // Table Headers 21 | $color[6] = '#8a8aaf'; // Text on Left Bar 22 | $color[7] = '#8a8aaf'; // Normal text 23 | $color[8] = '#9097bc'; // Links 24 | $color[9] = '#2d2d3b'; // Darker Version of #0 25 | $color[10] = '#16161d'; // Darker Version of #9 26 | $color[11] = '#ffffff'; // Special Folders color 27 | $color[12] = '#1d1d26'; // Alternate List Item Color (alternates with #4) 28 | $color[13] = '#8a8aaf'; // Single-Quoted text 29 | $color[14] = '#8a8aaf'; // Two or more quotes 30 | $color[15] = '#ffffff'; // Unselectable Folders 31 | -------------------------------------------------------------------------------- /themes/high_contrast_theme.php: -------------------------------------------------------------------------------- 1 | name = $name; 32 | /** 33 | * Language properties 34 | * @var array 35 | */ 36 | $this->properties = array(); 37 | } 38 | 39 | /** 40 | * Constructor (PHP4 style, kept for compatibility reasons) 41 | * @param string $name 42 | */ 43 | function Language($name) { 44 | self::__construct($name); 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /templates/default/label.tpl: -------------------------------------------------------------------------------- 1 | $value) { 33 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 34 | } 35 | echo '>' . $text . ''; 36 | 37 | 38 | -------------------------------------------------------------------------------- /themes/in_the_pink.php: -------------------------------------------------------------------------------- 1 | $value) { 31 | //TODO: see the FIXME tag on line 68 of functions/forms.php - the sm_encode_html_special_chars() below should be migrated to the template class 32 | echo ' ' . $key . (is_null($value) ? '' : '="' . sm_encode_html_special_chars($value) . '"'); 33 | } 34 | echo ' />'; 35 | 36 | 37 | -------------------------------------------------------------------------------- /plugins/preview_pane/templates/default_advanced/empty_frame.tpl: -------------------------------------------------------------------------------- 1 | 10 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 11 | * @version $Id$ 12 | * @package plugins 13 | * @subpackage preview_pane 14 | * 15 | */ 16 | 17 | 18 | // retrieve the template vars 19 | // 20 | extract($t); 21 | 22 | 23 | ?> 24 | \n\n\n"; 35 | 36 | -------------------------------------------------------------------------------- /plugins/administrator/INSTALL: -------------------------------------------------------------------------------- 1 | Administrator Plugin 2 | -------------------- 3 | 4 | In order to use this plugin, you must first activate it using 5 | conf.pl and then you must change the config/config.php files 6 | permissions to 660. This file must be owned by the user who you 7 | want to have access to this plugin (only one user allowed) and 8 | the group must be the group of the user who is running php. This 9 | authentication method requires posix support in php and doesn't 10 | work, if user's id equals to 0. 11 | 12 | An alternative method, but less secure, is to add a file called 13 | admins into the plugin folder with the names of the users that 14 | you want to allow the use of the plugin. 15 | 16 | Use this plugin at your own risk, and always remember to make a 17 | backup of your config.php file before use. 18 | 19 | Order of authentication checks 20 | ------------------------------ 21 | When plugin checks if user can use it, it first checks 22 | plugins/administrator/admins file. If file does not exist, plugin 23 | checks config/admins. If plugin can't find admins file, it tries to 24 | use uid based authentication. 25 | 26 | 27 | Credits 28 | ------- 29 | 30 | The administrator plugin was originally created by Philippe Mingo, and is now 31 | maintained by the SquirrelMail Project Team. 32 | -------------------------------------------------------------------------------- /themes/spice_of_life_dark.php: -------------------------------------------------------------------------------- 1 | 32 | .SH "COPYRIGHT" 33 | Copyright (c) 2006-2023 The SquirrelMail Project Team 34 | .SH "LICENSE" 35 | This manual is licensed under GNU General Public License. See COPYING file 36 | included in the SquirrelMail package or 37 | \fBhttp://opensource.org/licenses/gpl\-license.php\fR. 38 | -------------------------------------------------------------------------------- /themes/deepocean_theme.php: -------------------------------------------------------------------------------- 1 | display('footer.tpl'); 34 | exit(); 35 | } 36 | 37 | 38 | // get system specs 39 | // 40 | require_once(SM_PATH . 'plugins/bug_report/system_specs.php'); 41 | list($body, $warnings, $corrections) = get_system_specs(); 42 | 43 | global $oTemplate; 44 | $oTemplate->assign('body', $body); 45 | $oTemplate->display('plugins/bug_report/system_specs.tpl'); 46 | $oTemplate->display('footer.tpl'); 47 | 48 | 49 | -------------------------------------------------------------------------------- /themes/deepocean2_theme.php: -------------------------------------------------------------------------------- 1 | $value) { 35 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 36 | } 37 | echo '>' . $value . ''; 38 | 39 | 40 | -------------------------------------------------------------------------------- /themes/slashdot_theme.php: -------------------------------------------------------------------------------- 1 | $value) { 33 | echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); 34 | } 35 | echo ">\n" . $text . "\n"; 36 | 37 | 38 | -------------------------------------------------------------------------------- /themes/greenhouse_effect.php: -------------------------------------------------------------------------------- 1 | 29 | ngettext Test Strings: 30 | 31 |

The results of this test depend on your current language (translation) selection (see Options ==> Display Preferences) and the corresponding translation strings in locale/xx/LC_MESSAGES/test.mo

32 | 33 |
34 | 
35 | ";
43 | 
44 | sq_change_text_domain('squirrelmail');
45 | $oTemplate->display('footer.tpl');
46 | 
47 | 
48 | 


--------------------------------------------------------------------------------
/themes/kind_of_blue.php:
--------------------------------------------------------------------------------
 1 | \n";
28 | }
29 | else {
30 |     $output .= "\n";
31 | }
32 | 
33 | $left_frame  = ''."\n";
34 | $right_frame = ''."\n";
35 | 
36 | if ($nav_on_left) {
37 |     $output .= $left_frame . $right_frame;
38 | } else {
39 |     $output .= $right_frame . $left_frame;
40 | }
41 | 
42 | echo $output ."\n\n";
43 | 


--------------------------------------------------------------------------------
/plugins/squirrelspell/doc/CRYPTO:
--------------------------------------------------------------------------------
 1 | CRYPTOGRAPHY SUPPORT IN SQUIRRELSPELL
 2 | --------------------------------------
 3 | 
 4 | Starting with version v0.3 SquirrelSpell is capable of working with encrypted
 5 | user dictionaries. However, this option is only available when PHP
 6 | is compiled with support for MCRYPT. This is relatively easy -- to enable
 7 | MCRYPT support, follow instructions at:
 8 | 
 9 | http://www.php.net/mcrypt
10 | 
11 | NOTE: You will need libmcrypt version 2.4.x or above for SquirrelSpell
12 | to work.
13 | 
14 | HOW IT'S DONE
15 | --------------
16 | SquirrelSpell encrypts the dictionary with the user's mailbox password, 
17 | thus making the encryption/decryption process transparent to the user. 
18 | The algorythm used for encryption is Blowfish, but you may manually override 
19 | it in the code if you so wish.
20 | 
21 | The only shortcoming this approach has -- when mailbox password is changed, 
22 | SquirrelSpell asks the user to enter the old password in order to re-encrypt
23 | the file with the new key. If the user doesn't remember the password, then
24 | the file is lost, unless you want to brute-force it open.
25 | 
26 | The encryption is off by default and users are warned about remembering
27 | their passwords before they enable encryption of their personal dictionary.
28 | 
29 | I haven't tested the overhead. If anyone has any benchmarks -- you are
30 | welcome to share them.
31 | 


--------------------------------------------------------------------------------
/plugins/administrator/setup.php:
--------------------------------------------------------------------------------
 1 |  _("Administration"),
40 |             'url'  => SM_PATH . 'plugins/administrator/options.php',
41 |             'desc' => _("This module allows administrators to manage SquirrelMail main configuration remotely."),
42 |             'js'   => false
43 |             );
44 |     }
45 | }
46 | 


--------------------------------------------------------------------------------
/plugins/fortune/setup.php:
--------------------------------------------------------------------------------
 1 | 
27 | 
28 |   
29 |     
46 |   
47 | 
30 | 31 | 32 | 43 | 44 |
33 | 34 | 35 | 40 | 41 |
36 |
37 |
38 | 
39 |
42 |
45 |
48 | -------------------------------------------------------------------------------- /themes/methodical_theme.php: -------------------------------------------------------------------------------- 1 | 31 |   32 | [ ] 33 | 36 | 43 | -------------------------------------------------------------------------------- /themes/autumn.php: -------------------------------------------------------------------------------- 1 | text') 30 | $color[14] = '#ff0000'; // Color for text with more than one quote ('>> text') 31 | $color[15] = '#ffffff'; // Non-selectable folders in the left frame (defaults to #6) 32 | -------------------------------------------------------------------------------- /themes/autumn2.php: -------------------------------------------------------------------------------- 1 | text') 30 | $color[14] = '#ff0000'; // Color for text with more than one quote ('>> text') 31 | $color[15] = '#ffffff'; // Non-selectable folders in the left frame (defaults to #6) 32 | -------------------------------------------------------------------------------- /themes/turquoise.php: -------------------------------------------------------------------------------- 1 | text') 30 | $color[14] = '#666666'; // Color for text with more than one quote ('>> text') 31 | $color[15] = '#ffffff'; // Non-selectable folders in the left frame (defaults to #6) 32 | -------------------------------------------------------------------------------- /plugins/listcommands/setup.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 1999-2023 The SquirrelMail Project Team 10 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License 11 | * @version $Id$ 12 | * @package plugins 13 | * @subpackage squirrelspell 14 | */ 15 | 16 | /** 17 | * Include the SquirrelMail initialization file. 18 | */ 19 | require('../../include/init.php'); 20 | 21 | /** 22 | * Set a couple of constants and defaults. Don't change these, 23 | * the configurable stuff is in sqspell_config.php 24 | * @todo do we really need $SQSPELL_DIR var? 25 | */ 26 | $SQSPELL_DIR='plugins/squirrelspell/'; 27 | $SQSPELL_CRYPTO=FALSE; 28 | 29 | 30 | 31 | include_once(SM_PATH . $SQSPELL_DIR . 'sqspell_functions.php'); 32 | 33 | /** 34 | * $MOD is the name of the module to invoke. 35 | * If $MOD is unspecified, assign "options_main" to it. Else check for 36 | * security breach attempts. 37 | */ 38 | if(! sqgetGlobalVar('MOD',$MOD,SQ_FORM)) { 39 | $MOD = 'options_main'; 40 | } 41 | sqspell_ckMOD($MOD); 42 | 43 | /* Load the stuff already. */ 44 | if (file_exists(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod")) { 45 | require_once(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod"); 46 | } else { 47 | error_box(_("Invalid SquirrelSpell module.")); 48 | // display footer (closes html tags) 49 | $oTemplate->display('footer.tpl'); 50 | } 51 | -------------------------------------------------------------------------------- /templates/default/search_result_top.tpl: -------------------------------------------------------------------------------- 1 | 29 |
30 | -------------------------------------------------------------------------------- /themes/classic_blue.php: -------------------------------------------------------------------------------- 1 | text') 30 | $color[14] = '#666666'; // Color for text with more than one quote ('>> text') 31 | $color[15] = '#ffffff'; // Non-selectable folders in the left frame (defaults to #6) 32 | -------------------------------------------------------------------------------- /themes/powder_blue.php: -------------------------------------------------------------------------------- 1 | text') 30 | $color[14] = '#666666'; // Color for text with more than one quote ('>> text') 31 | $color[15] = '#f5f9ff'; // Non-selectable folders in the left frame (defaults to #6) 32 | -------------------------------------------------------------------------------- /themes/techno_blue.php: -------------------------------------------------------------------------------- 1 | text') 30 | $color[14] = '#4d657d'; // Color for text with more than one quote ('>> text') 31 | $color[15] = '#f6faff'; // Non-selectable folders in the left frame (defaults to #6) 32 | -------------------------------------------------------------------------------- /themes/classic_blue2.php: -------------------------------------------------------------------------------- 1 | text') 30 | $color[14] = '#666666'; // Color for text with more than one quote ('>> text') 31 | $color[15] = '#ffffff'; // Non-selectable folders in the left frame (defaults to #6) 32 | -------------------------------------------------------------------------------- /themes/netstyle_theme.php: -------------------------------------------------------------------------------- 1 | 1 quote 31 | $color[14] = '#00C060'; // (green) Color for quoted text -- >> 2 or more 32 | $color[15] = '#002266'; // (dark blue) Unselectable folders 33 | -------------------------------------------------------------------------------- /themes/minimal_bw.php: -------------------------------------------------------------------------------- 1 | 1 quote 34 | $color[14] = '#000000'; // (black) Color for quoted text -- >> 2 or more 35 | $color[15] = '#000000'; // (black) Unselectable folders 36 | --------------------------------------------------------------------------------