Wez Furlong

Results 893 comments of Wez Furlong

To clarify what I see, sometimes I see just this: sometimes I see the ubuntu logo and spinner wheel, but stopped. I tried leaving hdmi disconnected for a while before...

My workaround for this was to install qemu on the macos side, start an ubuntu vm there, mount the physical linux disk, chroot into it, install sshd, set a password,...

I can confirm that 24.04 LTS resolves this issue. It would be great for the installer image to be updated to this release, as it was a bit of an...

OSC sequences are defined as being terminated by the ST sequence, which is `ESC \`. They can also be terminated by `^G`. Since the iterm2 protocol is using OSC sequences,...

hmm, wezterm also tries to query terminal properties via the XTVERSION escape sequence, and then the screen dimensions via a variety of probing escape sequences. Perhaps those also need to...

gist of implementation is: * See this method for inspiration on how to trigger the message parser: https://github.com/KumoCorp/kumomta/blob/2037371793df4b6b615af224e3ad22c6a622524a/crates/message/src/message.rs#L864-L887 * use a some means to match and extract all urls from...

Pretty sure that this is just: ```lua kumo.on('smtp_server_message_received', function(msg) msg:prepend_header('CFBL-Address', '[email protected]; report=arf') end) ``` what more do we need to do here?

* Reports sent via SMTP MUST contain a valid DomainKeys Identified Mail (DKIM) [[RFC6376](https://datatracker.ietf.org/doc/html/rfc6376)] signature by the reporting domain. * The DKIM TXT record SHOULD contain the appropriate service type...

Reports need to be batched daily, but with a randomized delivery time; the randomization is prevent everyone sending all their reports at eg: midnight-UTC to the same place. We'll need...