ผลต่างระหว่างรุ่นของ "8. ตั้งค่า Domain และ User"
ไปยังการนำทาง
ไปยังการค้นหา
Tanagan (คุย | มีส่วนร่วม) (Created page with "1. Login เข้า mariadb '''# mysql -u root -p ''' 2. เลือก DB ของ mail server และกำหนด Domain ภาษาอังกฤษ และ...") |
Tanagan (คุย | มีส่วนร่วม) |
||
แถว 1: | แถว 1: | ||
1. Login เข้า mariadb | 1. Login เข้า mariadb | ||
− | '''# mysql -u root -p | + | '''# mysql -u root -p''' |
− | ''' | + | |
2. เลือก DB ของ mail server และกำหนด Domain ภาษาอังกฤษ และภาษาไทย และ Email-Account ภาษาอังกฤษ) พร้อม password เพื่อเริ่มใช้งาน | 2. เลือก DB ของ mail server และกำหนด Domain ภาษาอังกฤษ และภาษาไทย และ Email-Account ภาษาอังกฤษ) พร้อม password เพื่อเริ่มใช้งาน | ||
'''# USE eaimail;''' | '''# USE eaimail;''' | ||
แถว 8: | แถว 8: | ||
'''# INSERT INTO users (email, password) VALUES ([['thai@eai.in.th']], ENCRYPT([['thaiuserpassword']]));''' | '''# INSERT INTO users (email, password) VALUES ([['thai@eai.in.th']], ENCRYPT([['thaiuserpassword']]));''' | ||
'''# INSERT INTO users (email, password) VALUES ([['ไทย@อีเอไอ.ไทย']], ENCRYPT([['thaiuserpassword']]));''' | '''# INSERT INTO users (email, password) VALUES ([['ไทย@อีเอไอ.ไทย']], ENCRYPT([['thaiuserpassword']]));''' | ||
+ | |||
+ | 3 กำหนด Email ที่เข้ามายัง Email Account ภาษาไทย ให้ forward เข้า Email-Account ภาษาอังกฤษ เนื่องจากระบบไม่สามารถสร้าง mailbox เป็น ภาษาไทยได้ | ||
+ | '''# INSERT INTO forwardings (source,destination) VALUES ([['ไทย@อีเอไอ.ไทย','thai@eai.in.th']]);''' | ||
+ | '''# quit''' |
รุ่นแก้ไขเมื่อ 10:43, 17 ธันวาคม 2562
1. Login เข้า mariadb
# mysql -u root -p
2. เลือก DB ของ mail server และกำหนด Domain ภาษาอังกฤษ และภาษาไทย และ Email-Account ภาษาอังกฤษ) พร้อม password เพื่อเริ่มใช้งาน
# USE eaimail; # INSERT INTO domains (domain) VALUES ('eai.in.th'); # INSERT INTO domains (domain) VALUES ('อีเอไอ.ไทย'); # INSERT INTO users (email, password) VALUES ('thai@eai.in.th', ENCRYPT('thaiuserpassword')); # INSERT INTO users (email, password) VALUES ('ไทย@อีเอไอ.ไทย', ENCRYPT('thaiuserpassword'));
3 กำหนด Email ที่เข้ามายัง Email Account ภาษาไทย ให้ forward เข้า Email-Account ภาษาอังกฤษ เนื่องจากระบบไม่สามารถสร้าง mailbox เป็น ภาษาไทยได้
# INSERT INTO forwardings (source,destination) VALUES ('ไทย@อีเอไอ.ไทย','thai@eai.in.th'); # quit