You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2026-01-12 22:51:27 +03:00
- hand over $search to smarty templates templates/list-virtual_alias.tpl, templates/list-virtual_alias_domain.tpl: - add search result highlighting templates/list-virtual_mailbox.tpl: - add search result highlighting - move output of "Mailbox" / "Forward only" outside the foreach loop (was displayed once per mailbox alias target) css/default.css: - add style for ".searchresult" git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@868 a1433add-5e2c-0410-b055-b7f2511e0802
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
// vim:ts=4:sw=4:et
|
|
ini_set('include_path', get_include_path() . ':' . dirname(__FILE__));
|
|
chdir("..");
|
|
|
|
|
|
if (!defined('SM_PATH'))
|
|
{
|
|
define('SM_PATH','../');
|
|
}
|
|
include_once(SM_PATH . 'plugins/postfixadmin/config.php');
|
|
include_once(SM_PATH . 'plugins/postfixadmin/functions.inc.php');
|
|
include_if_exists(SM_PATH . 'include/validate.php');
|
|
if (file_exists(SM_PATH . 'include/validate.php'))
|
|
{
|
|
include_once(SM_PATH . 'include/validate.php');
|
|
}
|
|
else {
|
|
include_if_exists(SM_PATH . 'src/validate.php');
|
|
}
|
|
include_once(SM_PATH . 'functions/page_header.php');
|
|
include_once(SM_PATH . 'functions/display_messages.php');
|
|
include_once(SM_PATH . 'functions/imap.php');
|
|
include_if_exists(SM_PATH . 'functions/array.php');
|
|
if (file_exists(SM_PATH . 'src/load_prefs.php'))
|
|
{
|
|
include_once(SM_PATH . 'src/load_prefs.php');
|
|
}
|
|
else {
|
|
include_if_exists(SM_PATH . 'include/load_prefs.php');
|
|
}
|
|
// overwrite squirrelmail's content type to utf8...
|
|
header("Content-Type: text/html; charset=utf8");
|
|
|
|
|
|
//global $VACCONFMESSAGE;
|
|
bindtextdomain('postfixadmin', SM_PATH . 'plugins/postfixadmin/locale');
|
|
textdomain('postfixadmin');
|
|
|