[Boost-users] Beast for IMAP

2020-08-28 Thread Kenneth Porter via Boost-users
I've been thinking about writing some email utilities and have looked at various IMAP libraries. I'm wondering if I should roll my own using Beast. I've seen an SMTP library using Beast on GitHub. Has anyone else attempted an IMAP client with Beast?

Re: [Boost-users] Beast for IMAP

2020-08-29 Thread Kenneth Porter via Boost-users
On 8/28/2020 11:38 PM, niXman via Boost-users wrote: On 2020-08-28 23:47, Kenneth Porter via Boost-users wrote: I've seen an SMTP library using Beast on GitHub. can you provide the link please? https://github.com/Brdnl/mail ___ Boost-

Re: [Boost-users] Beast for IMAP

2020-08-29 Thread Kenneth Porter via Boost-users
--On Saturday, August 29, 2020 11:27 AM +0300 Zhivko Vasilev via Boost-users wrote: And IMAP complexity by itself is a "Beast" compared with SMTP. Not from boost libraries, but have you look at these libraries if you need IMAP support. https://github.com/dinhviethoa/libetpan https://github.co

[Boost-users] Validating downloads on Windows

2020-11-07 Thread Kenneth Porter via Boost-users
I thought I had a corrupted download and wanted to relate my experience on how to validate the zip file downloads on Windows. The Boost archives (tar, zip, etc.) all have a matching small .json file that contains a SHA256 hash of the archive file. Under Windows 10, you can use certutil.exe fro

Re: [Boost-users] boost.org domain expired?

2022-05-03 Thread Kenneth Porter via Boost-users
Confirmed. Here's a site snapshot from yesterday in case someone needs it: https://web.archive.org/web/20220502193202/https://www.boost.org/ ___ Boost-users mailing list Boost-users@lists.boost.org https://lists.boost.org/mailman/listinfo.cgi/boost-

[Boost-users] Broken link to latest code from old ASIO example

2022-08-10 Thread Kenneth Porter via Boost-users
The directory structure of ASIO changed a bit and now the website pages of samples in old versions no longer direct to the correct page in the latest version: I wanted to see how to code a ping so I googled fo

[Boost-users] Enumerating network interfaces and querying their properties

2022-08-14 Thread Kenneth Porter via Boost-users
Is there a portable way to enumerate network interfaces and query their properties? I don't see anything in ASIO for that. Any recommendations for other libraries? So far the closest I've come is Python's netifaces library. (Maybe someone would like to fork the Python library's C source and bri