Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
346d1986
Commit
346d1986
authored
13 years ago
by
Fabien Pinckaers
Browse files
Options
Downloads
Patches
Plain Diff
[IMP] mail server view
bzr revid: fp@tinyerp.com-20111001223402-zh4bmgmihliiic1c
parent
c3889826
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openerp/addons/base/ir/ir_mail_server.py
+2
-2
2 additions, 2 deletions
openerp/addons/base/ir/ir_mail_server.py
with
2 additions
and
2 deletions
openerp/addons/base/ir/ir_mail_server.py
+
2
−
2
View file @
346d1986
...
...
@@ -145,14 +145,14 @@ class ir_mail_server(osv.osv):
_columns
=
{
'
name
'
:
fields
.
char
(
'
Description
'
,
size
=
64
,
required
=
True
,
select
=
True
),
'
smtp_host
'
:
fields
.
char
(
'
Server
Name
'
,
size
=
128
,
required
=
True
,
help
=
"
Hostname or IP of SMTP server
"
),
'
smtp_host
'
:
fields
.
char
(
'
S
MTP S
erver
'
,
size
=
128
,
required
=
True
,
help
=
"
Hostname or IP of SMTP server
"
),
'
smtp_port
'
:
fields
.
integer
(
'
SMTP Port
'
,
size
=
5
,
required
=
True
,
help
=
"
SMTP Port. Usually 465 for SSL, and 25 or 587 for other cases.
"
),
'
smtp_user
'
:
fields
.
char
(
'
Username
'
,
size
=
64
,
help
=
"
Optional username for SMTP authentication
"
),
'
smtp_pass
'
:
fields
.
char
(
'
Password
'
,
size
=
64
,
help
=
"
Optional password for SMTP authentication
"
),
'
smtp_encryption
'
:
fields
.
selection
([(
'
none
'
,
'
None
'
),
(
'
starttls
'
,
'
TLS (STARTTLS)
'
),
(
'
ssl
'
,
'
SSL/TLS
'
)],
string
=
'
Connection Security
'
,
string
=
'
Connection Security
'
,
required
=
True
,
help
=
"
Choose the connection encryption scheme:
\n
"
"
- None: SMTP sessions are done in cleartext.
\n
"
"
- TLS (STARTTLS): TLS encryption is requested at start of SMTP session (Recommended)
\n
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment