summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
AgeCommit message (Collapse)Author
2004-04-27method-ify some module internal functions.fukachan
bug fix search logic of ml_home_prefix. move quotemeta() from IO::Adapter to here.
2004-04-27move quotemeta($regexp) from IO::Adapter to here.fukachan
compare domains case insensitively.
2004-04-23remove "use FML::Log;".fukachan
2004-04-22command_context_init() returns empty HASH_REF where it includes validfukachan
command as the first valid argument. define command_context_set_normal_stop(), command_context_get_normal_stop().
2004-04-22check $context if it is well defined. if ok, call command.fukachan
check value by command_context_get_normal_stop() to stop this process.
2004-04-21bug fix mkdir(): str to octal handling bugfukachan
2004-04-18variable renaming:fukachan
s/cgi_language_list/cgi_language_select_list/; s/cgi_menu_address_map_list/cgi_menu_address_map_select_list/; s/error_analyzer_function_list/error_analyzer_function_select_list/; s/template_file_charset_list/template_file_charset_select_list/;
2004-04-17run $curproc->log_rorate() lastlyfukachan
2004-04-17implement log_rorate()fukachan
2004-04-17preparation of context switch (preliminary. not yet implemented)fukachan
2004-04-17imported into FML::* once. File::CacheDir -> FML::Cache::Ringfukachan
2004-04-10IO::Adapter based lock systemfukachan
2004-04-10implement copy() and append() methods $curproc provides to removefukachan
File::Utils class.
2004-04-02fix reply_message() system to handle smtp_sender properly.fukachan
moify libexec/error to forward mail which smtp sender is fml_owner().
2004-04-02define fml_owner_address()fukachan
2004-03-31Mail::ThreadTrack is obsoleted. remove related codes.fukachan
2004-03-31move config.cgi specific methods run_*() fromfukachan
FML::Process::CGI::Kernel to FML::CGI::Menu.
2004-03-28move details of thread manipulation to FML::Article::Thread as couldfukachan
as possible.
2004-03-23allow CUI(fml,makefml) to send messages.fukachan
this function disabled by default. fml and makefml can use --allow-send-message --send-to=ADDRESS option for it.
2004-03-23try to allow -O key=value command line options. Internally eachfukachan
function uses cui_command_specific_options() to get the command specific options.
2004-03-20remove not used variable ($pcb)fukachan
2004-03-17implement toggle of filter function by $use_article_filterfukachan
2004-03-14change some code to "... if $debug".fukachan
implement command_context_set_ml_name() and command_context_get_ml_name(). This is preliminary codes for more extension so that we need to care authentication differs among ML's when we enhance command processor for listserv emulation.
2004-03-14fix typofukachan
2004-03-14modify command analyze logic. currently, applyfukachan
$command_mail_restrictions for each command line, if ok, execute the commmand via FML::Command.
2004-03-14use restriction_state_reply_reason() to shling code size.fukachan
clean up.
2004-03-14implement the following methods:fukachan
restriction_state_init() restriction_state_set_deny_reason() restriction_state_get_deny_reason() restriction_state_reply_reason() error_message_set_count() error_message_get_count()
2004-03-14remove permit_command().fukachan
2004-03-13fml --allow-send-message allows makefml/fml sends reply messages.fukachan
currently user mode "subscribe" and "unsubcribe" support this style.
2004-03-13use $curproc->allow_reply_message() to check if we should send backfukachan
messages.
2004-03-13implement allow_reply_message() method.fukachan
2004-03-13prepare credential area more early stage (within constructor).fukachan
so remove later object creation.
2004-03-12variable renaming.fukachan
[*_program -> *_function] $use_command_mail_program -> $use_command_mail_function $use_digest_program -> $use_article_digest_function $use_distribute_program -> $use_article_post_function $use_error_analyzer_program -> $use_error_mail_analyzer_function [command list] $commands_for_user -> $user_command_mail_allowed_commands $commands_for_stranger -> $anonymous_command_mail_allowed_commands $commands_for_privileged_user -> $admin_command_mail_allowed_commands $commands_for_admin_cgi -> $admin_cgi_allowed_commands [restrictions] $post_restrictions -> $article_post_restrictions $post_restrictions_reject_notice_data_type -> $article_post_restrictions_reject_notice_data_type $command_restrictions -> $command_mail_restrictions permit_commands_for_stranger -> permit_anonymous_command_mail $admin_command_restrictions -> $admin_command_mail_restrictions
2004-03-12variable renaming:fukachan
s/use_digest_program/use_article_digest_function/g; s/use_distribute_program/use_article_post_function/g;
2004-03-11rename: $reply_message_* -> $report_mail_*fukachan
2004-03-04merge new command mail framework [from command-reconstruct branch]fukachan
2004-02-29fi typofukachan
2004-02-27select proper language for reply message based on Accept-Language,fukachan
Content-Type and language preference order. use plural languages if needed.
2004-02-27define lang_to_charset().fukachan
fix return value for some methods. use "print if $debug" in some cases.
2004-02-27define __convert_message_nl() and use it.fukachan
allow loader program uses reply_message() method.
2004-02-27fix comments on reply_message() around.fukachan
reply_message() handles request when the current process runs under MTA. fix regexp optimization.
2004-02-26change Mail::Message::Encode to Mail::Message::String in message handling.fukachan
implement get_preferred_languages() method.
2004-02-26implement set_language_hint(), get_language_hint().fukachan
get_accept_language_list() returns [] not [*] when no data.
2004-02-26get_charset: fix default charset handlingfukachan
2004-02-26more proper charset handling based on Content-Type: field.fukachan
2004-02-26new option -o key=value which overrider configurations.fukachan
you can use duplicated -o options e.g. -o key1=value1 -o key2=value2.
2004-02-15ui_message() prefers $msg_args->{level} if specified.fukachan
2004-02-15white space cosmetics.fukachan
2004-01-31not use "$cf_list = $curproc->get_config_files_list();".fukachan
$curproc->load_config_files($cf_list); -> $curproc->load_config_files();
2004-01-24overhaul: clean up (FNF)fukachan