-
KanBo Installation
- KanBo On-Premises Installation Requirements and Prerequisites
- How to Create a X.509 High-Trust Certificate
- KanBo Installation On-Premise SharePoint 2013/2016/2019
- KanBo Installation on Office 365 and Azure
- KanBo Setup
- Creating a Windows Virtual Machine on Azure for Elastic Search
- Creating a Linux Based Virtual Machine on Azure for Elastic Search
- Installing and Configuring Elastic Search on Windows
- Installing and Configuring Elastic Search on Debian
- Creating and Updating the Elastic Cloud Deployment
- KanBo Modern Webpart Installation
- Uninstall KanBo from Office 365
-
KanBo Updates
-
Additional Components
- Setting Up KanBo Email Notifications (On-Premise)
- Setting Up KanBo Email Notifications on Azure
- Sync Targets
- Send Email to KanBo - Installation (On-Premise)
- Send Email to KanBo - Installation (Cloud)
- Enabling Email a Card Message
- KanBo Outlook Add-in Installation (O365 & On-Premise)
- KanBo External User Groups (Active Directory Integration)
- SharePoint Profiles Synchronization
- Installation of KanBo MyBoard Synchronization with Outlook Calendar and Outlook Tasks
- Nintex Integration Installation
- KanBo and Microsoft Power Automate integration: Installation
- KanBo and Microsoft Power Automate Integration: Activation
- Configuring Power Automate with Your KanBo
- Installation of the Autodesk BIM Plugin for KanBo
- KanBo and UiPath Integration: Configuration
- SharePoint Site Collection Balancing and Admin Warnings
- Plugin for Adding Users to KanBo / Sharepoint When They First Enter it
- KanBo Mini Application Installation
- KanBo API for Developers
-
Tips & Tricks
- Disable Sleeping Tabs in Browsers
- Customize KanBo Background Images and KanBo Colors
- Show KanBo Version
- Get KanBo ID
- Import Users to KanBo
- Renew Certificate for KanBo Graph Installation
- Configure How Documents Should Be Opened from KanBo
- Disable/Enable Public Boards Creation
- Find Out the Certificate Expiration Dates On-Premise
- How to Change the Help URL in Your KanBo
- Define Board Features to Be Enabled or Disabled by Default
-
Troubleshooting
Send Email to KanBo – Installation (On-Premise)
The Send Emails to KanBo feature will allow you to send emails directly to a KanBo Board and create a new Card out of the email. It will also allow you to add email and its attachments to an existing KanBo Card.
Prerequisites
- This feature is enabled for KanBo in version 2.7 or higher. Make sure you have this KanBo version installed.
- Functionality requires having a service account on your Exchange to serve as a Catch-All account. This user
needs to have an Exchange license. - You need to set up an email account for Incoming Email with a custom domain. Create an account with this domain
in his email address (example: mails@yourdomain.com). You can use a subdomain or fully qualified domain.

1. Creating a Catch-All email address.
You will need to create a Catch-All email account on Exchange server.
- Read how create a Catch-All email address here.
- Read more about Catch-All address and how to create it on Exchange here.
- Create a new account for the Catch-All purpose. Make sure this account has the Exchange license and mailbox.
- Add the custom domain to accepted domains.
2. Creating a SSL certificate.
This is a recommended method for the IIS scenario. Please perform these steps on your Virtual Machine.
- Go to the IIS and double click on Server Certificates.

- Now click on Create Self-Signed Certificate.

- Specify a friendly name for a certificate and select Personal. Click on OK.
- Select the certificate and select Export.

- Select the path and name for the certificate and add new password to it.
3. Changing KanBo web.config.
- Move to the location where your KanBo backend is hosted (the KanBo package). Open the web.config in any text editor.

- Add the following code before </plugins> and change the path to the certificate.
<auth.app issuer="incoming-mails"> <signature algo="rs256"> <cert type="x509-file" file="C:\Certs\mails\somecert.cer" /> </signature> <!-- set name to whatever you want, but there's no scenario where it would be used --> <mapper type="service" name="incoming emails" roles="service" /> <mapper type="user" /> <mapper type="email" roles="service" /> <mapper type="login" /> </auth.app>
- Move slightly to the bottom to see the <appSettings> section.
- Set KanBoIncomingMail value to true.
<add key="KanBoIncomingMail" value="true" />
- Set KanBoIncomingMailDomain to your sending domain name - the one on which you have the Catch-All mailbox.
<add key="KanBoIncomingMailDomain" value="YourDomain" />
- Save the web.config.
If you intend to send emails to your catch-all address and some other email addresses (multiple at once), add this entry and adjust the number inside it to match the maximum number of receivers.
<add key="kanbo.max-receivers" value="1" />
4. Configure the Email Tool
- Contact us at support@kanboapp.com to receive an Email to KanBo tool package.
- Once you download the package, unzip it and move it a chosen location. In our case it would be: C:\Email Tool\EmailToKanBo\EmailToKanBo.
- Open your directory and start editing EmailToKanBo.exe.config.
- In the following section please change the following values:
-
YourCatchAllEmail@domain.com - add here your Catch All email
- Password - add here the Catch-All account's email
- mail.url - server address of your Exchange instance
<add key="mail.type" value="ews-unread" /> <add key="mail.receiver-email" value="YourCatchAllEmail@domain.com"/> <add key="mail.receiver-password" value="Password"/> <!-- will autodiscover if empty --> <add key="mail.url" value="https://some-host-address"/>
- In the next section, adjust the following values:
- CertPath - local path to your certificate,
- Password - your certificate password,
- https://YourKanboAddress - add here your KanBo address
- YourDomain - add here your email domain to which Catch-All address is connected to
<add key="kanbo.api.cert.file" value="CerthPath\CertName.pfx"/> <add key="kanbo.api.cert.pass" value="Password"/> <add key="kanbo.api.url" value="https://YourKanBoAddress"/> <add key="kanbo.incoming-mail-domain" value="YourDomain"/>
- Save the changes.
5. Add a task to the Task Scheduler.
Here is the simple example how to add Email to KanBo Task to the Windows Task Scheduler.
Full manual for Windows Scheduled Tasks you can find in the Microsoft web site: link
- Execute Task Scheduler. Insert data in the following values:
- Name
- Select user with proper privileges to execute task.
- Select Run whether user is logged on or not
- We also recommend to select Run with highest priviledges.
- Select Triggers tab and create a new trigger. Complete the steps as it follows:
- Begin the task - On a Schedule
- Settings: Daily
- Advanced settings: Repeat task every 5 minutes for a duration of Indefinitely (you can of course chose another period of time to suit your needs)
- Select Enabled
- Select Actions tab and add new action pointing to the EmailToKanBo.Webjob.exe file within the folder where you unpacked the Email To KanBo tool.
- Action: Start a program,
- Program/script - local path to EmailToKanBo.Webjob.exe file (example: C:\Email Tool\EmailToKanBo\EmailToKanBo\EmailToKanBo.Webjob.exe)
- Start in (optional) - add a local path to the folder where EmailToKanBo.Webjob.exe is located (example: C:\Email Tool\EmailToKanBo\EmailToKanBo\)
- After this action is completed, select OK and confirm your administrator credentials.
6. Use it
You finished the configuration and installation of the Incoming Mails feature. Now read how to use this feature by reading an article here: Incoming Emails. Recommendation: Set an Outlook retention policy to remove old messages.Was this article helpful?
Please, contact us if you have any additional questions.