Webmail address (SmarterMail) https://poczta.dcsweb.pl
Email parameters
Access type |
Host name |
Port |
Network protocol / notes |
---|---|---|---|
WebMail: |
poczta.dcsweb.pl |
443/TCP |
HTTPS |
POP3: |
poczta.dcsweb.pl |
995/TCP |
POP over SSL / POP3S |
IMAP: |
poczta.dcsweb.pl |
993/TCP |
IMAP over SSL / IMAPS |
SMTP – desktop mail client: |
poczta.dcsweb.pl |
465/TCP |
SMTP over SSL / SMTPS |
SMTP – desktop mail client: |
poczta.dcsweb.pl |
587/TCP |
SMTP |
MX (SMTP): |
mx1.dcsweb.pl |
25/TCP |
SMTP |
How to create mailboxes in the hosting panel?
In the HostedWindows.pl environment an unlimited number of mailboxes is available. However, storage usage is limited by the size of the mail folder (not visible in the hosting panel) according to the hosting-plan quota. By default—when creating a domain or a site based on that domain (and no “Catch-all” account is specified)—no mailbox is created and the domain is not handled by the mail environment. To create a mailbox, go to the space where the domain was created and, from the left-hand menu, choose Mail → Accounts.
When creating an account (Add button) you must specify the user name (selecting the hosted domain), password twice, mailbox quota and the first / last name.
How to use email via the web interface
The service’s WebMail is available at https://poczta.dcsweb.pl/. Log in with the full email address and the password configured in the hosting panel.
On first login a wizard starts. It can be used to configure the time zone, device / mail-client synchronization and to migrate mail. All settings can be skipped.
Note that in the default theme the icons at the left that switch between mail functions may not be obvious at first glance.
How to configure email in Windows 10 Mail
When the Mail app starts, a mailbox-configuration wizard opens. To launch Mail: go to apps and choose Mail.
On the “Internet email account” screen select the service-access type (POP3 or IMAP), server address poczta.dcsweb.pl and port (995 for POP3, 993 for IMAP) with “Require SSL” enabled; enter the login name (full email address) and outgoing-mail server address poczta.dcsweb.pl with port 465 and “Require SSL” and “Require authentication” enabled.
How to configure a mailbox in an application hosted on our server
Mail sent by applications hosted on our servers should go through the server poczta.dcsweb.pl on port 587. Inside the HostedWindows.pl infrastructure the application connects without encryption.
Example code:
<script runat="server">
Protected Sub SendButton_Click(sender As Object, e As EventArgs)
Dim err As String
Dim smtp As New System.Net.Mail.SmtpClient("poczta.dcsweb.pl", 587)
Dim mssg As New System.Net.Mail.MailMessage(mailfrom, ToTextBox.Text, SubjectTextBox.Text, BodyTextBox.Text)
mssg.IsBodyHtml = True
smtp.Credentials = New System.Net.NetworkCredential("user@domain", "password")
Try
smtp.Send(mssg)
Catch ex As Exception
err = ex.Message
End Try
End Sub
</script>