summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
AgeCommit message (Collapse)Author
2004-01-02more error checks.fukachan
fix comments.
2004-01-02fix copyrightfukachan
2004-01-02fix copyrightfukachan
2004-01-02remove/rename $argsfukachan
2004-01-02remove $args from _cgi_resolve_ml_specific_variables();fukachan
2004-01-02$curproc->resolve_ml_specific_variables( $args );fukachan
$curproc->load_config_files( $args->{ cf_list } ); => $curproc->resolve_ml_specific_variables(); my $cf_list = $curproc->get_config_files_list(); $curproc->load_config_files($cf_list); $curproc->parse_incoming_message($args); => $curproc->parse_incoming_message();
2004-01-02+set_config_files_list()fukachan
+append_to_config_files_list() +get_config_files_list()
2004-01-01remove $args.fukachan
It is a top level parameter FML::Process::Switch provides. Almost functions should access the content via utility methods provided by FML::Process::Utils.
2004-01-01FNF: fix copyrightfukachan
2004-01-01fix: cgi_var_cgi_mode() return null string by default.fukachan
2004-01-01fix messagefukachan
2003-12-30experimental implementation done.fukachan
2003-12-30bug fix initialization.fukachan
update comments. sort. clarify function role by renaming: ProcessSwitch() -> load_module() Process::Switch
2003-12-30import $default_ml_home_prefix from main.cf name space.fukachan
2003-12-30bug fix get_incoming_message_cache_file_path()fukachan
2003-12-29save incoming_message cache file path on memory for later use.fukachan
2003-12-29implement {get,set}_incoming_message_cache_file_path().fukachan
2003-12-28clean up class hierarchy.fukachan
o FML::HomeDir::Prefix -> FML::ML::HomePrefix; o FML::MTAControl -> FML::MTA::Control o move main codes in newml and rmml to FML::ML::Control class.
2003-12-25add log at htmlify article endtmu
2003-12-25bugfix default $use_address_mask and $address_mask_type in thread_db_args()tmu
2003-12-24remove the direct use of $args, use utility methods via $curprocfukachan
2003-12-24use is_need_ml_name() not $args->{ ... }fukachan
2003-12-24implement is_need_ml_name()fukachan
2003-12-24add and enable libexec/fakerfukachan
2003-12-06cosmetics: white spacefukachan
2003-11-30system_accounts -> system_special_accounts.fukachan
XXX xxx_restrictions supports "reject_system_accounts" for backward XXX compatiblity.
2003-11-29defined() check of log_message_queuefukachan
2003-11-29--computer-output -> --log-computer-outputfukachan
$*computer_output -> $*log_computer_output
2003-11-29define $use_computer_output.fukachan
modify FML::Process::* to use it. FML::Process::Kernel supports customization by $computer_output_engine definition. $curproc->log_message_init() is called within prepare() method of each program.
2003-11-29support --computer-output option, which is currently same as --log-dup yet.fukachan
2003-11-29implement config() method.fukachan
2003-11-25ensure valid exit codefukachan
2003-11-23create FML::User::* class to manipulate user database.fukachan
1. move FML::Command::UserControl to FML::User::Control class. 2. implement FML::User::DB (committed later).
2003-11-16fixed argument handling to support:fukachan
o makefml method domain o fml domain method
2003-11-16switched to new ml_home_prefix framework, which is enhanced virtualfukachan
domain operation. See fml-devel in 2003/10.
2003-11-16we use this module as simplified FML::Process::Kernel for debug.fukachan
define simplified version of some following methods: +mkdir +log +logwarn +logerror +ml_home_prefix
2003-11-05define $primary_ml_home_prefix_map in main.cf.fukachan
FML::Process::Kernel imports it. fix/update comments.
2003-11-02debug_level() -> get_debug_level().fukachan
sort definitions: {set,get}_print_style().
2003-11-02move safe_cgi_action_name from FML::Process::Utils tofukachan
FML::Process::CGI::Utils.
2003-10-30header_loop_check_rules -> incoming_mail_header_loop_check_rulesfukachan
use_header_loop_check -> use_incoming_mail_header_loop_check body_loop_check_rules -> incoming_mail_body_loop_check_rules use_body_loop_check -> use_incoming_mail_body_loop_check body_cksum_cache_dir -> incoming_mail_body_cksum_cache_dir
2003-10-26define $site_default_config_cf to remove hard-coded site_default_config.cf.fukachan
sort entries in main.cf.
2003-10-18default_file_mode -> file_default_modefukachan
default_directory_mode -> directory_default_mode move definitions from basic.cf to file.cf.
2003-10-18Mail::Message::Charset has tables on code, charset and languge.fukachan
FML::Process::CGI::Kernel is modified to use it.
2003-10-17command_prompt -> command_mail_reply_promptfukachan
2003-10-17cgi_menu_map_list -> cgi_menu_address_map_listfukachan
cgi_menu_default_map -> cgi_menu_default_address_map
2003-10-16bug fix _cgi_resolve_ml_specific_variables() for correct ml_* handling.fukachan
follow HTTP_ACCEPT_LANGUAGE information. fix log_file when admin/*.cgi runs.
2003-10-16cgi_var_language() returns '' not 'japanese' if language info not found.fukachan
2003-10-16modify debug messagefukachan
2003-10-16resutructure/enhance charset definitions:fukachan
${category}_default_charset and ${category}_charset_{ja,en,...}
2003-10-16get_charset() can handle accpet-language: and charset requested byfukachan
other module via PCB. XXX but this logic is not complete. we need overhaul this area on charset.