Results 1407 comments of Nutomic

Last I checked, Rustls wasnt able to generate RSA keypairs. https://github.com/LemmyNet/activitypub-federation-rust/blob/main/src/http_signatures.rs#L53

A basic trait is implemented in https://github.com/LemmyNet/activitypub-federation-rust/pull/29, however it doesnt support pagination. I never had to use collections much, so I hope someone with more direct experience can contribute a...

Agree with phiresky, although the queue function needs look more like this: ```rust pub fn queue(task: SendActivityTask, num_retries: u8); ``` The num_retries param can be used so that Lemmy can...

@colatkinson Can you explain why you want to bring your own queue? For me the use case isnt clear.

@colatkinson This crate is not going to have any direct database dependency, it will only expose a trait like `PersistentFederationQueue` mentioned above, so that applications can handle storage however they...

I assume you mean these `@user` in the beginning of posts which are sent by Mastodon and similar platforms. This is not only a problem in lemmybb but also in...

Same issue in lemmy-ui repo: https://github.com/LemmyNet/lemmy-ui/issues/1019 I think its better to implement it there, so that Lemmy backend doesnt have to do any HTML parsing and editing. Doing that in...

Actually this issue was originally opened for lemmybb, so solving it in lemmy-ui doesn't help.

Yes we could integrate a [FAQ](https://www.phpbb.com/community/help/faq).

Sounds like it wouldnt work without js in that case, which i want to avoid. I also dont want to translate templates to another language, tried that before and its...