묻고답하기

/************************************************************************
UebiMiau is a GPL'ed software developed by

- Aldoir Ventura - aldoir@users.sourceforge.net
- http://uebimiau.sourceforge.net

Fell free to contact, send donations or anything to me :-)
São Paulo - Brasil
*************************************************************************/

########################################################################
#Defaults:
#1 - Yes/On/True
#0 - No/Off/False
# do not remove or change this

define("yes",1);
define("no",0);

$themes         = Array();
$languages         = Array();

########################################################################
# _ Please attention _:
# The temporary files will be stored on this folder
# For security reasons, do not use web-shared folders

# ** The Web Server needs write-permission on this folder

# * Unix/Linux users use.
# /tmp/uebimiau
# * Win32 users
# c:/winnt/temp/uebimiau

# NEVER use backslashes (). Always use forward slashes (/),
# for all operating systems, INCLUDING Windows
########################################################################

$temporary_directory = "./database/";

########################################################################
# Your local SMTP Server (alias or IP) such as "smtp.yourdomain.com"
# eg. "server1;server2;server3"   -> specify main and backup server
########################################################################

$smtp_server = "mail.toasys.com";  #YOU NEED CHANGE IT !!


########################################################################
# Protocol and port
# Choose "imap" as protocol to use the Internet Mail Access Protocol,
# or "pop3" to use the Post Office Protocol.
# The default ports are:
# pop3 -> 110
# imap -> 143
# The imap is more fast, but all functions of UebiMiau works with POP3
########################################################################

$mail_protocol         = "pop3";
$mail_port                = 110;

########################################################################
# The TIME ZONE of server, format (+|-)HHMM (H=hours, M=minutes), eg. +0100
########################################################################
$server_time_zone = "-0000";


########################################################################
# The maximum size for stored files
# In order to keep you system fast, use values better than 5MB
# If you need disable it, set the value to 0 or leave it blank
########################################################################
$quota_limit = 500000;  //  in KB, eg. 4096 Kb = 4MB


########################################################################
# Use SMTP password (AUTH LOGIN type)
########################################################################
$use_password_for_smtp        = no;

########################################################################
# Redirect new users to the preferences page at first login
########################################################################
$check_first_login                = yes;

########################################################################
# Enable visualization of HTML messages
# *This option afect only incoming messages, the  HTML editor
# for new messages (compose page) is automatically activated
# when the client's browser support it (IE5 or higher)
########################################################################

$allow_html                         = yes;

########################################################################
# FILTER javascript (and others scripts) from incoming messages
########################################################################
$allow_scripts                        = no;

########################################################################
# Turn this option to 'yes'+ '+ ' if you want allow users send messages using
# they 'Reply to'+ ' preference's option as your 'From' header, otherwise
# the From field will be the email wich the users log in
########################################################################
$allow_modified_from        = yes;


########################################################################
# Server type:
# allowed values:

# "DETECT" -------->        Guess the pop3 server. If you are running UM
#                                         in a domain "www.company.com", the script will
#                                        use "PREFIX.company.com" as your server. you
#                                        can set the "PREFIX" in the var $mail_detect_prefix.
#                                        Also, the var $mail_detect_remove can be set
#                                        to "www.", then the script get rid the "www" and
#                                        put the prefix, eg. pop3.company.com.br

#"ONE-FOR-EACH" -->        Each domain have your own mail server.
#                                        The script will load the list of domains/servers from
#                                        var $mail_servers.

#"ONE-FOR-ALL" --->        If you use this option, your users must supply the
#                                        full email address as username. You can set the mail
#                                        server in the var $default_mail_server
#                                        

# LOGIN_TYPE

# Note. You can supply the LOGIN_TYPE according to your MAIL SERVER.
# Eg. If your mail server requires usernames in user@domain.com, you must
# specify the LOGIN_TYPE as "%user%@%domain%". You can combine it according to
# your server. eg.

# %user%
# %user%@%domain%
# %user%.%domain%

########################################################################

$mail_server_type         = "ONE-FOR-EACH";

########################################################################
# TYPE: DETECT
########################################################################

$mail_detect_remove         = "www.";
$mail_detect_prefix         = "mail.";
$mail_detect_login_type = "%user%@%domain%";

########################################################################
# TYPE: ONE-FOR-EACH
# Each domain have your own mail server
########################################################################

$mail_servers[] = Array(
        "domain" => "toasys.com",
        "server" => "localhost",
        "login_type" => "%user%"
);

/*
$mail_servers[] = Array(
        "domain" => "your-2nd-domain.com",
        "server" => "mail.your-2nd-domain.com",
        "login_type" => "%user%@%domain%"
);
*/

/*
$mail_servers[] = Array(
        "domain" => "your-Nth-domain.com",
        "server" => "mail.Nth-domain.com",
        "login_type" => "%user%@%domain%"
);
*/

########################################################################
# TYPE: ONE-FOR-ALL
# the default mail server for all domains
########################################################################

$default_mail_server         = "mail.YOUR-UNIQUE-SERVER.com.br";
$one_for_all_login_type        = "%user%@%domain%";

########################################################################
# Language & themes settings
########################################################################

require("./inc/config.languages.php");

########################################################################
# Support for SendMail (DEFAULT DISABLED (using SMTP))
# Only for *nix Systems (NOT Win32)
########################################################################
$use_sendmail     = no;
$path_to_sendmail = "/usr/sbin/sendmail";


########################################################################
# In some POP3 servers, if you send a "RETR" command, your
# message will be automatically deleted :(
# This option prevents this inconvenience
########################################################################

$mail_use_top = yes;

########################################################################
# Name and Version, it's used in many places, like as
# "X-Mailer" field, footer
########################################################################

$appversion = "2.7.2";
$appname = "Seoul Toa System Webmail";


########################################################################
# Add a "footer" to sent mails
########################################################################

$footer = "

________________________________________________
Message sent using $appname $appversion
";

########################################################################
# Enable debug :)
# no - disabled
# 1 or yes -> enabled with full results
# 2 -> enable with servers communications only
# ********************************************************/
$enable_debug = no;

########################################################################
# Block external images.
# If an HTML message have external images, it will be
# blocked. This feature prevent spam tracking
########################################################################

$block_external_images = no;

########################################################################
# Session timeout for inactivity
########################################################################

$idle_timeout = 10; //minutes

########################################################################
# Order setting
########################################################################

$default_sortby = "date";
$default_sortorder = "DESC";

########################################################################
# Default preferences...
########################################################################

$default_preferences = Array(
        "send_to_trash_default"         => yes,                # send deleted messages to trash
        "st_only_ready_default"         => yes,                # only read messages, otherwise, delete it
        "save_to_sent_default"                => yes,                # send sent messages to sent
        "empty_trash_default"                => yes,                # empty trash on logout
        "sortby_default"                        => "date",        # alowed: "attach","subject","fromname","date","size"
        "sortorder_default"                        => "DESC",        # alowed: "ASC","DESC"
        "rpp_default"                                => 20,                # records per page (messages), alowed: 10,20,30,40,50,100,200
        "add_signature_default"                => no,                # add the signature by default
        "signature_default"                        => "",                # a default signature for all users, use text only, with multiple lines if needed
        "timezone_default"                        => "+0000",        # timezone, format (+|-)HHMM (H=hours, M=minutes)
        "display_images_deafult"        => yes,                # automatically show attached images in the body of message
        "editor_mode_default"                => "html",        # use "html" or "text" to set default editor. "html" will be used only in IE5+ browsers
        "refresh_time_default"                => 10                # after this time, the message list will be refreshed, in minutes
                                                );



----------------------------
위의 config파일에서 어느부분을 수정해서 올려야지 쓸수있나요?
아시는분 답변좀 꼭부탁드리겠습니다.
감사합니다~~^^
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
김윤희 어떻게 해야 자연스럽게 될른지요? 작업파일 첨부합니다  
김병규 초보적인 php 질문입니다..고수님들 제발 [1] 2007.08.10
베르카엔 랜덤 링크 배너 질문입니다...;;;  
한승진 이런 문구가 뜨고 홈페이지가 열리지 않는데 해킹인가요? [3] 2007.08.10
양석 ID기억하기 기능이 궁금합니다. [2] 2007.08.10
정길영 제로보드 노프레임에 대한 질문 [1] 2007.08.10
에지 자바스크립트에서 trim() 에 해당하는 것은? [1] 2007.08.10
박기현 레드햇 리눅스 9.0에서 기본으로 설치된 apm [1] 2007.08.10
안병훈 간단한 방명록에서 새로고침시 또 저장되는 불상사가 일어났습니다. [1] 2007.08.10
voidpc 웹에서 사용자 추가 하는법??? [2] 2007.08.10
밤거리 플래시를 배경그림(background)처럼 배경으로 지정할수 있을까요? [1] 2007.08.10
김소담 노프레임에서..그림을 끊끼지않게.. [1] 2007.08.10
김태효 스케치 효과 질문입니다. [2] 2007.08.10
이수영짱 레이어(?)가 천천히 내려오게 하려면? [1] 2007.08.10
LEiTi PHP 추출 관련 질문 [2] 2007.08.10
김동철 플래시 메뉴요...ㅠ 퍼오는 방법좀.. [2] 2007.08.10
미르[MiR] 윈도우2003에서 제로보드 설치하는법 [1] 2007.08.10
김지수 [php]신문기사 긁어오기에서 날짜와 시간도 긁어오고 싶은데요.  
윤재호 외부로그인 설치시 나는 에러...  
김윤희 플레쉬로는 불가능하다???? [1] 2007.08.10
실제상황 [플레시] 초보인데 이 강좌를 이해못하겠어요. [1] 2007.08.10
박용석 폼메일 소스인데 메일을 보내면 메일이 안날라와요..도와주세요.. [1] 2007.08.10
루꼬 홈피이지 도메인 등록 및 서버는 어떻게 해야 할지요. [1] 2007.08.10
박현웅 홈페이지가 약간 오른쪽 아래로 주저 않자요... [1] 2007.08.10
김대수 PHP로 다음과 같은 간단한 기능을 제작하려 합니다. [4] 2007.08.10
김미아 나모에서 프레임으로 홈페이지를 만들어 최근 게시물 달려고 하는데요.. [1] 2007.08.10
밤거리 셀렉트 박스 선택하면 미리보기 적용 되는데~ (알려주세요)  
김아름 하이퍼링크 말인데요; [1] 2007.08.10
난감스 스샷부르는법.. [3] 2007.08.10
carrot 웹메일 소스(uebimiau-2_7_2) 한글화소수중에 config파일 수정해야 하는데 어디를 수정해서 써야하나요?