• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision7c3b98edbb67d9dfb94e8aee030d74dc9fd110c8 (tree)
Zeit2004-09-04 09:02:03
Autorhenoheno <henoheno>
Commiterhenoheno

Log Message

Sort mail-related settings

Ändern Zusammenfassung

Diff

--- a/pukiwiki.ini.php
+++ b/pukiwiki.ini.php
@@ -2,7 +2,7 @@
22 /////////////////////////////////////////////////
33 // PukiWiki - Yet another WikiWikiWeb clone.
44 //
5-// $Id: pukiwiki.ini.php,v 1.78 2004/08/30 14:29:47 henoheno Exp $
5+// $Id: pukiwiki.ini.php,v 1.79 2004/09/04 00:02:03 henoheno Exp $
66 //
77 // PukiWiki setting file
88
@@ -276,33 +276,34 @@ $no_proxy = array(
276276 );
277277
278278 ////////////////////////////////////////////////
279-// Mail notify
279+// メール送信
280280
281-// ページの更新時にメールを送信する
282-$notify = 0;
283-$notify_diff_only = 0; // 差分だけを送信するか
281+$notify = 0; // (1:ページの更新時にメールを送信する)
282+$notify_diff_only = 0; // (1:差分だけを送信する)
284283
285-$notify_to = 'xxx@yyy.zz'; // To:(宛先)
286-$notify_from = 'xxx@yyy.zz'; // From:(送り主)
284+// SMTPサーバ (Windows のみ, 通常は php.ini で指定)
285+$smtp_server = 'localhost';
286+
287+$notify_to = 'to@example.com'; // To:(宛先)
288+$notify_from = 'from@example.com'; // From:(送り主)
287289
288-// Subject:(件名) $pageにページ名が入る
290+// Subject:(件名) $pageにページ名が入ります
289291 $notify_subject = '[pukiwiki] $page';
290292
291-// 追加メールヘッダ
292-$notify_header = "From: $notify_from\r\nX-Mailer: PukiWiki/" .
293- S_VERSION . ' PHP/' . phpversion();
293+// メールヘッダ
294+$notify_header = "From: $notify_from\r\n" .
295+ 'X-Mailer: PukiWiki/' . S_VERSION . ' PHP/' . phpversion();
294296
295297 /////////////////////////////////////////////////
296-// POP / APOP Before SMTP
298+// メール送信: POP / APOP Before SMTP
297299
298300 // メール送信前にPOPまたはAPOPによる認証を行う
299301 $smtp_auth = 0;
300302
301-// SMTPサーバ (Windows のみ, 通常は php.ini で指定)
302-$smtp_server = 'localhost';
303-
304303 $pop_server = 'localhost'; // POPサーバ
305-$pop_port = 110; // ポート番号
304+$pop_port = 110; // ポート番号
305+$pop_userid = ''; // POPユーザ名
306+$pop_passwd = ''; // POPパスワード
306307
307308 // 認証に APOP を利用するかどうか (※サーバ側の対応が必要)
308309 // 未設定 = 自動 (可能であればAPOPを使用する)
@@ -310,9 +311,6 @@ $pop_port = 110; //
310311 // 0 = POP固定 (必ずPOPを使用する)
311312 // $pop_auth_use_apop = 1;
312313
313-$pop_userid = ''; // POPユーザ名
314-$pop_passwd = ''; // POPパスワード
315-
316314 /////////////////////////////////////////////////
317315 // 一覧・更新一覧に含めないページ名(正規表現で)
318316 $non_list = '^\:';