묻고답하기

/************************************************************************
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 남기남
마루타현 스케치북 폼 변경 문의 [2] 2016.01.25 by 마루타현
서사모 카카오톡보내기 할때 첨부이미지가 안되요~ 어디가 잘못된건지 ㅜㅜ file  
오픈퀴어 스크롤 따라다니는 퀵메뉴 배너 [3] 2015.12.14 by 오픈퀴어
세상의모든계산기 (크롬&관리자 상태일 때) MathJax 로딩이 상당히 버벅입니다. [3] 2015.12.12 by 세상의모든계산기
채리75 다중 홈페이지 뭐가 틀린건가요? [1] file 2015.12.12 by sejin7940
봉드레88 [고수님들의 도움요청 ]페이지 삽입문제 [1] 2015.12.10 by GG
GELEE 모바일 레이아웃에서 상단 로고 클릭시 홈으로 이동하지 않는 문제 [2] file 2015.12.09 by GELEE
smiling 확장변수를 **별표처리 하는법 있을까요?  
키스미베이베 메뉴 만들기좀 도와주세요 [2] file 2015.11.26 by 키스미베이베
보소보소 누리고 상세설명 이미지 오류 file  
namoo+ 모든 기능은 정상이나 회원가입 및 정보수정이 안 됩니다. ㅜ.ㅠ [9] 2015.11.08 by 빤뻔
댑펑 댓글 글자수를 mysqladmin 상에서 한 것 같습니다. [4] 2015.11.02 by 댑펑
김유석 이 API 토큰발급 어떻게 하나요? [1] 2015.10.21 by 부산민지아빠
김유석 API에 관해 질문좀..ㅠㅠ 제발..  
first 중대형 커뮤니티 운영 관련해 서버 선택 질문 드립니다 [9] 2015.09.25 by first
갤럭시탭 추천/비추천 후 팝업창 노출 문의 [1] 2015.09.22 by EISOFT
장기기억 xe에 webengine 레이아웃 수정법 [1] 2015.09.22 by 로이조52
GodBlessYou 업데이트후 http 500 내부서버오류.. [1] 2015.09.19 by 기진곰
가르송 mysql 전문가님들 안계신가요?ㅠㅠ [1] file 2015.09.18 by 기진곰
가르송 확실히 알려주시는분께 만원쏩니당 [3] 2015.09.18 by DoorWeb